loading other scenes in the background?

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

  1. #1

    Default loading other scenes in the background?

    Hi

    I'm creating a simple menu that has links to 3 video files, with a broadband &
    dialup version of each video....is there a way to start preloading those swf
    files while the menu is running? They're long video clips and take quite a
    while to load, even after being compressed and exported as a flv file

    or would it just be better to create a preloader on each swf file so the user
    knows that the page didn't die.... I haven't really worked with video in flash
    before, so I'm not quite sure on how to create a preloader for movie clip that
    is almost 5000 frames long. Thanks for your help

    Bartman Guest

  2. Similar Questions and Discussions

    1. help with preloaders and scenes
      loadedBytes = _root.getBytesLoaded(); totalBytes = _root.getBytesTotal(); if (loadedBytes<totalBytes) { percentageOutput =...
    2. Loading Scenes Individually
      Hello Everyon I have been given a flash web site project with many scenes. The loaders I have been using is to pre-load a whole movie but here...
    3. ever used scenes?
      Hello, I have been using Flash for a couple of years now but I have never used scenes. Whenever I need to change to another page or "scene" I have...
    4. Pb with scenes
      Hi everybody i've realized a swf file with 3 scenes; the pb is that Falsh shows the first scene, and doesn't stop before showing automaatically the...
    5. Background disappears when loading Targa with alpha into PS
      I know this is a new feature in Photoshop, that the alpha channel in an image is automatically made transparent when first loaded, but from time to...
  3. #2

    Default Re: loading other swf's in the background?

    [q][i]Originally posted by: Bartman[/i
    Hi
    I'm creating a simple menu that has links to 3 video files, with a broadband &
    dialup version of each video....is there a way to start preloading those swf
    files while the menu is running? They're long video clips and take quite a
    while to load, even after being compressed and exported as a flv file
    or would it just be better to create a preloader on each swf file so the user
    knows that the page didn't die.... I haven't really worked with video in flash
    before, so I'm not quite sure on how to create a preloader for movie clip that
    is almost 5000 frames long. Thanks for your help.[/q

    Yes you can, size doesn't matter. You can load your movies in a container, but
    maybe after the menu has been loaded
    If you don't want videos to be displayed while loading hide the holder (_alpha
    = 0). If you want to load them at the same time you need as many holder as the
    number of movies

    CesareRocchi Guest

  4. #3

    Default Re: loading other swf's in the background?

    thanks cesare, can you explain a little more about these 'holders'? I haven't ever used that, and could use a little help...thanks.
    Bartman Guest

  5. #4

    Default Re: loading other swf's in the background?

    "holder" is not a technical term, something built in Flash. Holder ares movie
    clips
    every movie clip is potentially a holder, in which you can load stuff (jpgs,
    sounds, other swfs,...) like

    my_mc.loadMovie("test.jpg")

    After loading if you move 'my_mc' you move the image 'test.jpg'
    if you scale it down, the image scales down,..

    HTH

    -c

    CesareRocchi 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