Skip to content

Instantly share code, notes, and snippets.

@rockydd
Created April 27, 2010 03:41
Show Gist options
  • Save rockydd/380301 to your computer and use it in GitHub Desktop.
Save rockydd/380301 to your computer and use it in GitHub Desktop.
//bindable getter
[Bindable(event='imageStatusChanged')]
public function get status():String
{
return _status;
}
public function set status(s:String):void
{
__status = s;
this.dispatchEvent(new Event('imageStatusChanged'));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment