Flash Facebook 应用程序...加载的图像不可见...为什么?
你好 在 Flash 中为 Facebook 应用程序创建了一个简单的画廊。本地一切工作正常,当上传到我们的临时服务器时,图像似乎已加载,但它们是不可见的。
我正在创建一个 LoaderContext 文件并传递 true 作为参数,所以这不是问题。
有人有什么想法吗?
//CODE START
_lctx=new LoaderContext(true);
//or _lctx.checkPolicyFile = true;
_my_loader.load(new URLRequest(smallImg), _lctx);
//CODE END
Hi
Created a simple gallery in flash for a facebook application. Everything works fine locally, and when uploaded to our staging server the images seem to load but they are invisible.
I AM creating a LoaderContext file and passing true as a parameter so this isn't the issue.
Anyone have any ideas?
//CODE START
_lctx=new LoaderContext(true);
//or _lctx.checkPolicyFile = true;
_my_loader.load(new URLRequest(smallImg), _lctx);
//CODE END
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我过去遇到过无法使用 Flex 加载图像的问题。我需要更多细节,但是当我遇到问题时,我发现将图像加载到新的位图对象中可以正常工作:
I have issues with images not loading with flex in the past. I need some more details, but when I've had issues I found that loading the image into a new bitmap object worked ok:
不确定这是否是您正在寻找的。
我们在使用 Flash 开发 Facebook 应用程序时遇到了同样的问题。事实证明,我们需要一个 Crossdomain.xml 文件来在暂存中渲染图像。
Not sure whether this is what your are looking for.
We came across the same problem while developing a facebook app in flash. Turns out that we need a Crossdomain.xml file to render images in staging.