如何使用Actionscript 3退出桌面flash播放器?
System.exit(0);
在 搜索结果
SecurityError: Error #2018: System. Error。退出仅在独立Flash播放器。
在Flash CS6中预览项目和在Flash Player Debugger中播放导出的swf文件时都会出现错误。
可以使用
fscommand("quit");
这将终止您的swf。
不要忘记导入fscommand:
import flash.system.fscommand;
Flash Player和独立版本是有区别的。
当您导出fla时,您导出的是由flash播放器播放的swf。它不是孤立的。
编译它,然后去文件->创建投影仪。现在它是独立的,System.exit(0)应该可以工作了。
如何:
NativeApplication.nativeApplication.exit();