尝试在Adobe AIR中使用工作程序来使用多线程技术
可以只使用1个swf来包含main和worker swfs http://help.adobe.com/en_US/as3/dev/WS2f73111e7a180bd0-5856a8af1390d64d08c-7fff.html
但是我在启动我的工作代码时遇到了问题。 在下面的代码中,其他代码永远不会触发'else //后台工作者的入口点'
if (Worker.current.isPrimordial)
{
// create a background worker
//var bgWorker:Worker = WorkerDomain.current.createWorker(swfBytes);
initWorker();
// ... set up worker communication and start the worker
}
else // entry point for the background worker
{
有人可以建议解决方案吗?