SWFLoader垂直滚动
我在 swfloader 中有 5 帧的 Flash 电影。是否有机会像文档一样在框架之间滚动?
谢谢。
I have flash movie with 5 frames in swfloader. Is there any chances to scroll between frames like documents?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
考虑这种情况:
1. 使用
URLStream
对象将 swf 文件作为流加载。2. 使用
Loader
对象 (Loader.loadBytes
) 加载该 swf 的多个实例。(后一个加载器的内容对象是一个MovieClip实例。)
4. 使用这些影片剪辑作为文档页面。将每个影片剪辑发送到特定帧。
5. 将这些影片剪辑放入可滚动的
VGroup
容器中。完成了!
devaldi 还有一个名为“Flex Paper”的开源项目,可能会有所帮助。
另一件事: ForcibleLoader 是一个很棒的库,使您的代码与旧的 AVM1 文件兼容。
Consider this scenario:
1. Load the swf file as an stream using a
URLStream
object.2. Load multiple instances of that swf using a
Loader
object (Loader.loadBytes
).(the content object of the latter loader is a
MovieClip
instance.)4. Use these MovieClips as pages of a document. Send each MovieClip to a specific frame.
5. Place these MovieClips in a scrollable
VGroup
container.that's done!
There is also an open source project by devaldi called "Flex Paper" which may be helpful.
One more thing: ForcibleLoader is a great library which makes your code compatible with old AVM1 files.