Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

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

New Here ,
Aug 27, 2018 Aug 27, 2018

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

166
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Aug 28, 2018 Aug 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).

Translate
Community Expert ,
Aug 28, 2018 Aug 28, 2018
LATEST

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

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines