Skip to content

Instantly share code, notes, and snippets.

@peterblazejewicz
Created July 26, 2011 09:55
Show Gist options
  • Save peterblazejewicz/1106408 to your computer and use it in GitHub Desktop.
Save peterblazejewicz/1106408 to your computer and use it in GitHub Desktop.
quit application feature script
public function exitButtonClickHandler(event:MouseEvent):void
{
// do runtime check for presence of "filename"
if(mdm.Application && mdm.Application.filename.length)
{
mdm.Application.exit();
} else
{
flash.system.fscommand("quit");
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment