PDA

View Full Version : loadMovie and gotoAndStop help


camc
03-01-2008, 10:13 AM
LoadMovieNum("mc.swf", 20).gotoAndPlay(10)

or

on (release) {
loadMovie("mc.swf", "_root.EmptyMc");
_root.EmptyMC.gotoAndPlay(26);
}


is this possible?

camc
03-01-2008, 11:13 AM
LoadMovieNum("mc.swf", 20).gotoAndPlay(10)

or

on (release) {
loadMovie("mc.swf", "_root.EmptyMc");
_root.EmptyMC.gotoAndPlay(26);
}

is this possible?

camc
03-01-2008, 12:08 PM
Hi all.

1st. Sry my english

I have a problem :

If Button pressed loadmovie aboutus.swf in empty movie clip and aboutus.swf gotoandstop on 3th frame?

It's codes not working.

on (release) {
_root.empty.loadMovie("aboutus.swf", 18);
_root.empty.gotoAndStop(3);
}

and

on (release)
{
_root.empty.loadMovie("aboutus.swf", 0);
_root.empty.onEnterFrame = function(){
if(_root.empty._framesloaded>=_root.empty._totalframes){
_root.empty.gotoAndStop(3)
}
}
}

Plz help me.

Tnx