错误2000闪光灯 [英] Error 2000 in flash

查看:119
本文介绍了错误2000闪光灯的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有时候,(我不能给的情况下准确分类)错误#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.

  1. 如果它不是外部SWF这可能是因为你的一些资产都没有present在你的debug文件夹中。
  2. 一个下一个问题,检查将是否有足够的时间背景下成立,

  1. If it is not the external swf it could be that some of your assets are not present in your debug folder.
  2. 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.

这篇关于错误2000闪光灯的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆