Good day guys,
Just a quick one. Anyone got code snippets on exiting a Flash Lite application packaged as a web run time widget (WGZ) for S60 5th edition. The fscommand 2 way doesn't work for some reason.
Thanks
Good day guys,
Just a quick one. Anyone got code snippets on exiting a Flash Lite application packaged as a web run time widget (WGZ) for S60 5th edition. The fscommand 2 way doesn't work for some reason.
Thanks
Code:import flash.external.*; ExternalInterface.call("window.close”);
Last edited by Risalmin; 2011-05-02 at 09:43.
or
In AS 2:
Code:getURL("javascript:window.close()");
and AS 3:
Code:var u:URLRequest = new URLRequest("javascript:window.close()"); navigateToURL(u)
Best Regards,
SajiSoft
Last edited by sajisoft; 2011-05-04 at 06:34. Reason: addition