PDA

View Full Version : sequential preloading


iredlands
01-15-2003, 06:07 AM
ive followed the guidelines of the Sequential Preloader by Jesse Stratford and it works great

my question:
how do i stop each movie from starting automatically?

ive added a stop action into the first frame of all my clips - no joy

can anyone advise?

steve

farafiro
01-15-2003, 10:07 AM
the stop() isn't enough in the first frame, u should tell it withing the main movie that it all the frames are loaded, to gotoAndStop(1)

iredlands
01-15-2003, 11:33 PM
thankx for the reply

ive inserted gotoAndStop(1); into every line in the code & im stumpted

im presuming it needs to go here

// load the next movie in the sequence into the new container
loadMovie("bg"+count+".swf", _root[newName]);
_root[newName].gotoAndStop(1);

but that doesnt seem to work


any ideas?

steve (frustrated)

iredlands
01-15-2003, 11:36 PM
got it

// load the next movie in the sequence into the new container
loadMovie("bg"+count+".swf", _root[newName].gotoAndStop(1));

steve :D

farafiro
01-16-2003, 06:29 AM
alsomc = loadMovie("bg"+count+".swf", _root[newName])
mc.gotoAndStop(1);