如何访问 SWFKit 中的嵌入文件

发布于 2024-08-23 07:16:42 字数 282 浏览 11 评论 0原文

我正在使用 SWFKit 从 flash 项目创建本机 Windows 应用程序。我想通过SWFKit将视频嵌入到项目中,然后在flash中使用它。

看起来我已经找到了一种嵌入外部文件的方法,但我找不到有关如何通过 Flash 影片中的 ActionScript 访问此嵌入文件的手册。

alt text

所以问题是如何使用 ActionScript 访问已编译项目中的文件“bridge.flv”?

I'm using SWFKit to create a native windows app from flash project. I want to embed video in project via SWFKit and then use it in flash.

Looks like I've found a way to embed external file but I can't find manual about how to access this embedded file via ActionScript in flash movie.

alt text

So the question is how can I access file "bridge.flv" in compiled project using ActionScript?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

彩虹直至黑白 2024-08-30 07:16:42

问题解决了。

实际上看起来很简单。文件嵌入后,可以通过相对路径访问它,就像它存在于当前应用程序目录中一样。

例如嵌入的bridge.flv可以通过Flex VideoDisplay组件以这种方式访问​​:

video.source = "bridge.flv";

Problem is solved.

It appears to be pretty easy actually. Once file is embedded it can be accessed by relative path as if it was present in current application directory.

For example embedded bridge.flv can be accessed by Flex VideoDisplay component in this way:

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