preload everything

Out of context: Reply #6

  • Started
  • Last post
  • 17 Responses
  • flashbender0

    provided the external movies are empty in the first frame you could load them all into levels and then add up their bytesTotal and bytesLoaded...

    loadMovieNum("movie1.swf", 5)
    loadMovieNum(movie2.swf", 6)

    TotalBytesLoaded= Number(_root.getBytesLoaded() + _level5.getBytesLoaded() + _level5.getBytesLoaded() )

    TotalBytes= Number(_root.getBytesTotal() + _level5.getBytesTotal() + _level5.getBytesTotal() )

    Then just do the regular preloader stuff

    • they can be loaded into invisible containers as well, don't need to have empty framesrafalski

View thread