将项目导出到独立的 .swf 文件
我现在尝试了很长一段时间来寻找有关如何将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于图像你应该这样做。那么图像将是 swf 格式。对于视频我想它是类似的。你需要尝试一下。
for images you shoul do this. then image will be in swf. for videos i guess it similer. you need to try.