错误2000闪光灯闪光灯、错误

2023-09-09 21:41:26 作者:这么拼为了谁啊

有时候,(我不能给的情况下准确分类)错误#2000是由flash播放器抛出。我想这是由于与外部SWF工作(sqiglly拼写检查库),通过本地连接。

Sometimes(I can't give exact classification of the situation) Error #2000 is thrown by flash player. I suppose it's caused by working with external swf(sqiglly spell checking library) via local connection.

你有什么想法我怎么能修复bug?

Have you any idea how can I fix the bug?

感谢你在前进!

推荐答案

如果没有实际的code,人有大约3或4个不同的原因错误#2000。大多数时候是因为没有设置安全策略正确或没有及时收到。

Without the actual code, one has about 3 or 4 different reasons for Error #2000. Most of the times it is because the security policy was not set properly or was not received in time.

如果它不是外部SWF这可能是因为你的一些资产都没有present在你的debug文件夹中。

一个下一个问题,检查将是否有足够的时间背景下成立, If it is not the external swf it could be that some of your assets are not present in your debug folder.

A next issue to check would be if there is enough time for the context to be set up,

VAR myLoader:装载机=新的Loader(); VAR URL:的URLRequest =新的URLRequest(myExternalMovie.swf); myLoader.load(URL);

var myLoader:Loader = new Loader(); var url:URLRequest = new URLRequest("myExternalMovie.swf"); myLoader.load(url);

//注意它不是以下 myLoader.load(新的URLRequest(myExternalMovie.swf));

// Notice it is not the following myLoader.load(new URLRequest("myExternalMovie.swf"));

完整URL引用似乎工作比相对较好。

Full url references seem to work better than relative.