0
I need action script code to close android air application???
New Here
,
/t5/animate-discussions/i-need-action-script-code-to-close-android-air-application/td-p/7194680
May 18, 2015
May 18, 2015
Copy link to clipboard
Copied
I used this code to exit from air application In android mobile , when i used this i am coming out of application but the application is still in minimize mode . can any one help me to close total application when I press exit button ???
import flash.desktop.NativeApplication;
quitBtn.addEventListener(MouseEvent.CLICK, quitScene);
function quitScene(event:MouseEvent):void {
stop();
NativeApplication.nativeApplication.exit();
}
Thanks®ards
Niranjan
TOPICS
ActionScript
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Guru
,
LATEST
/t5/animate-discussions/i-need-action-script-code-to-close-android-air-application/m-p/7194681#M152602
May 18, 2015
May 18, 2015
Copy link to clipboard
Copied
This could work:
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

