I have flash movie with 5 frames in swfloader. Is there any chances to scroll between frames like documents?
Thanks.
I have flash movie with 5 frames in swfloader. Is there any chances to scroll between frames like documents?
Thanks.
Copyright © 2021 Jogjafile Inc.
Consider this scenario: 1. Load the swf file as an stream using a
URLStream
object. 2. Load multiple instances of that swf using aLoader
object (Loader.loadBytes
). (the content object of the latter loader is aMovieClip
instance.) 4. Use these MovieClips as pages of a document. Send each MovieClip to a specific frame. 5. Place these MovieClips in a scrollableVGroup
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.