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

unloadMovie for several movies 1

Status
Not open for further replies.

Metacomet

Technical User
Joined
Nov 19, 2002
Messages
79
Location
MX
Hi, heres another one...

I have a lot of movies loaded in diferent levels in my main movie, what can I use to tell the interfase to Unload all at once, instead of write all the levels everytime?

ex;

UnloadMovieNum 30
UnloadMovieNum 31
UnloadMovieNum 32
UnloadMovieNum 33
...

I will apreciate your quick response.

thanks

 
Use a for loop...

for(i=30; i<51; i++){
unloadMovieNum(i);
}

Would unload movies from levels 30 to 50.

Regards. Affiliate Program - Web Hosting - Web Design
After 25,000 posts, banned on FK, but proud not to have bowed down to them!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top