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!

Loading loops for data files 1

Status
Not open for further replies.

bigbird3156

Programmer
Feb 20, 2001
183
AU
Hi Guys...

ok, I know how to construct a loading loop to be used when you are loading upyour actual flash movie, but how do i do it when i am loading up a data or text file to be displayed inside the movie...

for an example of what i am looking for go to
I'm hoping it is a straightforward one, i just could not find an answer...

thanks (-: The Bird from Down Under
bigbird_3156@bb3.com.au
 
use your normal loop method. Use the loadVariables to load your text file into a movie-clip which has the following script on the clip:

onClipEvent (data) {
_root.stoploop = true;
}


where the argument used in your normal loop would change become:

if (_root.stoploop) {
//whatever you want to happen when the file loads;
}
dave@pinkzeppelin.com

^^^^^^^^^^^^^^^^^^^^^​
 
very nice site by the way
dave@pinkzeppelin.com

^^^^^^^^^^^^^^^^^^^^^​
 
yeah the site is cool isn't it, now if only i could design em like that, it is one of the winners in the flashforward 2001 contests, i think it got the award for its navigation...

if you havent already you should check out what sort of stuff the winners are producing, very chalanging or depressing depending on your personality (I usually go for depressing for some reason)...


Thanks for the help... (-: The Bird from Down Under
bigbird_3156@bb3.com.au
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top