A Flash Developer Resource Site

Results 1 to 3 of 3

Thread: loading multiple movies one after the other...?

  1. #1
    Member
    Join Date
    Sep 2000
    Posts
    67
    Can anyone tell me how to go about loading multiple movies from a home page.
    ie.I have a pre loader for the main page in my site. Once that has loaded you see each of the other sections of the site loading, (each section of the site is a seperate movie) ie. under the menu link on my home page is displays a loading message, one after the other. working its way through the menu items.

    How would you ask it to load multilpe movies in script?

  2. #2
    Denied ACCESSORIES
    Join Date
    Dec 2000
    Location
    Rio de Janeiro
    Posts
    208
    Originally posted by shack
    Can anyone tell me how to go about loading multiple movies from a home page.
    ie.I have a pre loader for the main page in my site. Once that has loaded you see each of the other sections of the site loading, (each section of the site is a seperate movie) ie. under the menu link on my home page is displays a loading message, one after the other. working its way through the menu items.

    How would you ask it to load multilpe movies in script?
    if all movies are to be visible at the same time you would put them in different levels...
    ex...

    loadMovieNum ("your.swf",1)
    loadMovieNum ("your2.swf",2) etc...

    hope this helps.:P

  3. #3
    Junior Member
    Join Date
    Aug 2000
    Posts
    22
    You can load multiple movies by putting them on different
    levels:

    i.e.

    on (press) {
    loadMovieNum ("1.swf", 1);
    loadMovieNum ("2.swf", 2);
    loadMovieNum ("3.swf", 3);
    }

    You can put the same actions ( i.e. loadMovieNum ) on a
    frame if you don't want it on a button ( this way the movies would load when the frame is played ).

    hope this helps

    hones

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center