A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: Newbie to pre-loading

  1. #1
    Member
    Join Date
    May 2004
    Posts
    94

    Newbie to pre-loading

    Is there any way i can set a certain part of my website to load the rest of the site so not waiting on every indivdual section and only on one chunk at the very start.

  2. #2
    Senior Member
    Join Date
    Jun 2003
    Location
    Florida
    Posts
    289
    You could build each section as a separate SWF, and load those into a container MC in your main movie using loadMovie, based on the button the user clicks.

    Another way would be to test for a certain number of frames to be loaded before the movie starts playing.

    code:


    stop();
    myInterval = setInterval(preloader, 10);
    function preloader() {
    if (_framesloaded == 100) {
    _root.play();
    clearInterval(myInterval);
    }
    }




    the movie would still continue to load, but it would start playing after Frame 100 had loaded.

    Of course, it is up to you to determine how many frames to load before the movie starts. I would load it past your first stop(); to make sure the movie did not slow down when it reached an unloaded frame.

    Hope this helps!

    ***EDIT: Not sure if the above script will work as I don't know if "_framesloaded" has been deprecated.
    Try it and see.
    Last edited by preprint; 08-12-2004 at 09:18 AM.
    If it was easy, everyone would do it.

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