将项目导出到独立的 .swf 文件

发布于 2024-11-11 13:48:59 字数 957 浏览 3 评论 0原文

我现在尝试了很长一段时间来寻找有关如何将 FlexProject 导出到独立 SWF 文件的答案。 我有一个 FLV 视频,将其放入 flvplayback 容器中并添加了 Flash CS4 的皮肤。 所以它只是一个简单的视频播放器。 我们正在开发一个电子学习项目,我想将这些视频放入使用 Flex 3.5 构建的主应用程序中,因此为了让事情变得更容易,我需要这些视频的独立 SWF 版本,以便我的队友可以将它们加载到使用 flex swfloader 的应用程序。

我真的希望我说清楚了,抱歉英语不是我的母语。

这是我的项目中的代码:

    public function init() {

    videoHolder1.addChild(debug);

    }

    ]]>
</fx:Script>
<fx:Declarations>
<video:FLVPlayback id="debug"
                   source="../Videos/Debug.flv"
                   scaleMode="maintainAspectRatio"
                   skin="../Skins/SkinUnderAllNoCaption.swf"
                   skinAutoHide="false"
                   width="960"
                   height="540"
                   skinBackgroundColor="#011293"

                   autoPlay="false"
                   />
</fx:Declarations>
<mx:UIComponent id="videoHolder1" />    

I am trying for quite some while now to find an answer on how to export a FlexProject into a standalone SWF file.
I have a FLV video which I put into the flvplayback Container and added the skin from Flash CS4.
So all it is ist just a simple Videoplayer.
We are working on a E-Learning Project and I want to put those Videos into the Main Application which was built with Flex 3.5, so to make things easier I need that standalone SWF Version of those Videos so my Teammates can just load them into the application with the flex swfloader.

I really hope I made myself clear, sorry English isnt my native language.

Here is the code from my project:

    public function init() {

    videoHolder1.addChild(debug);

    }

    ]]>
</fx:Script>
<fx:Declarations>
<video:FLVPlayback id="debug"
                   source="../Videos/Debug.flv"
                   scaleMode="maintainAspectRatio"
                   skin="../Skins/SkinUnderAllNoCaption.swf"
                   skinAutoHide="false"
                   width="960"
                   height="540"
                   skinBackgroundColor="#011293"

                   autoPlay="false"
                   />
</fx:Declarations>
<mx:UIComponent id="videoHolder1" />    

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

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

发布评论

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

评论(1

若无相欠,怎会相见 2024-11-18 13:48:59

对于图像你应该这样做。那么图像将是 swf 格式。对于视频我想它是类似的。你需要尝试一下。

[Embed(source="images/logo.gif")]
[Bindable]
public var imgCls:Class;

for images you shoul do this. then image will be in swf. for videos i guess it similer. you need to try.

[Embed(source="images/logo.gif")]
[Bindable]
public var imgCls:Class;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文