Skip to main content
Participant
August 28, 2018
Answered

in Flash cs6 How to load more than one .swf to play Plz hurry again (Sorry)

  • August 28, 2018
  • 1 reply
  • 183 views

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);

    This topic has been closed for replies.
    Correct answer kglad

    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).

    1 reply

    kglad
    Community Expert
    kgladCommunity ExpertCorrect answer
    Community Expert
    August 28, 2018

    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).