Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Preloaders.

Status
Not open for further replies.

Ivan1

Programmer
Jun 18, 2001
113
US
Hey there.
I was wondering if there is any way to pre-load part of a movie, and then let it start playing and load the rest of the movie as it plays.
Any advice is much appreciated.
Ivan
 
yes..say you have a movie that is 100 frames long..use this to goto frame 35:

ifFrameLoaded (35) {
gotoAndPlay (1);
}
put that in the first frame of your movie..
e.gif


carlsatterwhite@endangeredgraphics.com
 
sorry this instead..you have to load your movie from the loader scene callng the next scene that you want to play:

ifFrameLoaded ("scenename", 35) {
gotoAndPlay ("scenename", 1);
}
e.gif


carlsatterwhite@endangeredgraphics.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top