Skip to content

Instantly share code, notes, and snippets.

@aaronfay
Created November 27, 2011 03:54
Show Gist options
  • Save aaronfay/1396929 to your computer and use it in GitHub Desktop.
Save aaronfay/1396929 to your computer and use it in GitHub Desktop.
Object construction in Actionscript
package {
class Widget{
function Widget():void{
// note that the constructor in Actionscript has the
// same name as the Class
// this gets called when instantiated
}
}
}
// in your code
var widget = new Widget();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment