Flex 构建使用本地文件

发布于 2024-11-10 01:39:39 字数 656 浏览 0 评论 0原文

我有一个非常愚蠢的问题。我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

屋檐 2024-11-17 01:39:39

使用 URLRequest 加载外部文件

new URLRequest("c:\folder\video.mp4"));

use URLRequest to load the external files

new URLRequest("c:\folder\video.mp4"));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文