Flex 构建使用本地文件
我有一个非常愚蠢的问题。我正在使用 Flash Builder (Flex) 4。
我的应用程序使用 VideoDisplay 组件显示视频和一些图像。 视频文件名始终命名为 video.mp4,图像位于名为“real/”的文件夹内。 视频文件和真实文件夹位于构建的 .swf 的相同位置。
代码中的视频源设置如下:
videoDisplay.source = 'video.mp4';
动态加载的图像如下:
img.source = 'real/' + imageFilename;
在开发中,我将此视频和真实文件夹放入名为 bin-debug 的 Flash Builder 文件夹中: 我可以正确显示视频并查看图像。
在 release 版本中,当您导出并构建版本时,我尝试将此视频文件和文件夹放入文件夹 bin-release 中,我打开生成的index.html,但是什么都没有,视频和图像未加载!
沙盒有问题吗?我不这么认为,因为它位于同一个本地文件夹中!
我需要在编译器中设置任何东西吗?一些参数?
I have a very stupid problem. I'm using Flash Builder (Flex) 4.
My application displays a video using VideoDisplay component and some images.
The video filename is always named video.mp4 and the images are inside a folder called "real/".
The video file and the real folder are in the SAME location of the .swf built.
The video source in the code is set like this:
videoDisplay.source = 'video.mp4';
and the images, loaded dynamically, are like:
img.source = 'real/' + imageFilename;
In development, I put this video and real folder inside the Flash Builder folder called bin-debug: I can correctly display the video and see the images.
In the release version, when you export and build the release, I have tried to put this video file and the folder inside the folder bin-release, I open the index.html generated, but nothing, the video and the images are not loaded!
Is there any problem with the sandbox? I don't think so because it is in the same local folder!
Do I have to setup anything in the compiler? Some param?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 URLRequest 加载外部文件
use URLRequest to load the external files