I want to exit ( close ) programmatically a mobile flex application when clicking a Button. What is the ActionScript for that ?
How to exit (close) a mobile flex application?
1.6k views Asked by pheromix At
2
There are 2 answers
0
On
On Android you can do
NativeApplication.nativeApplication.exit();
On iOS, this is not possible. http://forums.adobe.com/message/4347689
I think you should use
Explained here: Application launching and exit options.