Flash CS5.5:在 iPad 上播放视频?
有人成功地让视频在为 iPad 发布的 Flash 中播放吗?我尝试过使用 Video 和 StageVideo 类,但即使它们在 Flash IDE 中测试成功,它们也无法在 iPad 上运行。我正在使用CS5.5。
Has anyone succeeded in getting video to play in Flash published for the iPad? I have tried using both the Video and StageVideo classes, but even though they test successfully in the Flash IDE, they do not work on the iPad. I am using CS5.5.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我已经实现了在iPhone和iPad上播放视频,请按照以下步骤操作:
您可以使用普通的FLVPlayback
.fla
文件放在一起。FLVPlayback
组件导入到 stage 并删除它以获得皮肤。.flv
、.mov
、.mp4
):请记住这一点:
filename.extension
。I have achieved playing video in iPhone and iPad, follow the following steps:
You can use ordinary FLVPlayback
.fla
file together.FLVPlayback
component to stage and delete it in order to get the skin..flv
,.mov
,.mp4
):Important to keep in mind:
filename.extension
.除非您使用 loadercontext,否则您无法加载包含 ios 代码的外部 swf,而 flvplayback 皮肤则无法做到这一点。
为了补救,不要使用皮肤并创建自定义控件(如果需要)。
you can't load an external swf that contains code in ios unless you use a loadercontext and that's not possible with an flvplayback skin.
to remedy, don't use a skin and create custom controls, if needed.