Copy link to clipboard
Copied
this my code. it play one .swf already but .swf is to big i have to cut it in 3 part. how do i play .swf part 1 and part 2 and part 3 as a one video
var swfRequest:URLRequest = new URLRequest ("All clip 720p.swf");
var swfLoader:Loader = new Loader ();
swfLoader.load (swfRequest);
addChild (swfLoader);
use different loaders if more than 1 needs to be displayed at any one time or you need to display one of them more than once.
if you're trying to display one after a previous one completes play and you can't add code to the loaded swfs, use a loop (eg, enterframe) to check when the previous swf's last frame plays (assuming that's what determines when it's completed play).
Copy link to clipboard
Copied
use different loaders if more than 1 needs to be displayed at any one time or you need to display one of them more than once.
if you're trying to display one after a previous one completes play and you can't add code to the loaded swfs, use a loop (eg, enterframe) to check when the previous swf's last frame plays (assuming that's what determines when it's completed play).
Find more inspiration, events, and resources on the new Adobe Community
Explore Now