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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

preloader to movie clip 1

Status
Not open for further replies.

killbuzz

Technical User
Mar 21, 2001
103
US
Hey gang, I got a question about a preloader i got. On scene 1 i have the preloader, Scene 2 i have the the site. in that scene i have a movie clip, thats where all the big stuff is to load. I need to know how would i make the if frame is loaded i dont know what to put for the movieclip to preload... any idea's

Thanks
 
No thats not what im looking for its close.

As this is ifFrameLoaded ("Scene 2", 1) { gotoAndPlay ("Scene 2", 1);}

I have all my Animation in a movie clip on scene 2 i nee to know the script for the movie clip as in would it be like
ifFrameLoaded ("Scene 2",1 "Movie Clip" name, 26) { gotoAndPlay ("Scene 2", 1);}

Something like that i dont know what the script is for it? any idea's?
 
Confusion!
You don't preload movie clips! They're already included in the main movie.
Use...

if(_root.getBytesLoaded() >= _rootgetBytesTotal()){
_root.gotoAndPlay("Scene 2", 1);
} Regards,

oldman3.gif
 
Typo in that last post... Missing dot:

>= _root.getBytesTotal()){


Regards,

oldman3.gif
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top