Hey guys,
I did a search on the forums and found 2 threads that were relevant but didn’t quite get what i wanted out of them.
I’ve loaded a movieclip using attachMovie(); and ive put it into an empty movie clip (as you would with external MC’s)
So my AS reads:
attachMovie("identifiername,“newname”,“emptymovieclip”);
My question is how i will go about targetting the loaded movieclip and having it play a certain frame.
I tried:
_root.emptymovieclip.gotoAndPlay(2);
and
_root.attachMovie(“box”,“box”,“holder”).gotoAndPlay(2);
(stab in the dark :P).
Thanks in advanced guys.