Making individual preloaders

Ask a Question related to Macromedia Flash Actionscript, Design and Development.

  1. #1

    Default Making individual preloaders

    [url]http://homepage.mac.com/curtdog/jaypeak2004/[/url]

    Hi all, I've made a preloader which looks at the parent timeline and won't
    proceed until all the bytes have been loaded. here's the code i used:

    iz = _parent.getBytesLoaded();
    ttl = _parent.getBytesTotal();
    per = Math.floor((iz*100)/ttl);
    if (per >= 100){
    _root.gotoAndPlay(2);
    }

    My problem is, my whole file is on one timeline. Take a look at my site and
    you'll see that it can take quite a while to load the entire file. Each photo
    is on a single frame on the root timeline, because I prefer not to use Scenes
    in my files. My question is, how can I insert individual preloaders for each
    frame on my timeline so that when you click a thumbnail, it will show a
    preloader then load the next frame?

    Fifty50 Guest

  2. Similar Questions and Discussions

    1. help with preloaders and scenes
      loadedBytes = _root.getBytesLoaded(); totalBytes = _root.getBytesTotal(); if (loadedBytes<totalBytes) { percentageOutput =...
    2. TESTING PRELOADERS
      Hi guys. I am at a beginner - intermediate level when it comes to Flash and a complete beginner when it comes to AScript. I cannot get my head...
    3. Preloaders
      Hello, I'm working on a projector for a CD-ROM, however there some large files that need to be preloaded... so ideally rather than freeze on a...
    4. Export on 1st frame and preloaders
      On my site , http://www.sbcyouth.org i have a preloader set up. I also want to create a "play", "pause", and "stop" buttons for a sound loop that i...
    5. Mx scroll and preloaders...
      Any have this similar problem? My preloaders work fine, for a regualr page, but when I add the Flash MX ScrollPane the preloader doesnt show up...
  3. #2

    Default Re: Making individual preloaders

    *bump*

    come on, i know someone out there k nows the answer, it can't be that difficult, i just want someone to help me with the scripting
    Fifty50 Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139