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.7k Views Asked by pheromix At
2
There are 2 best solutions below
0

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.