I feel like I’m missing something really really simple here but I don’t know what’s happening.
Here’s the deal.
I have 2 mc’s. Both of them have a motion tweened box between frames 1 to 15 and move along the x axis 300 pixels. Both have a stop(); action at frame 1 on a separate layer to stop the movie from playing right off the bat.
I put both of them on the stage in the main timeline which contains 1 frame, give both a unique instance name (m1_mc and m2_mc), created a new layer for actionscript. On that frame is the following.
stop();
m1_mc.gotoAndPlay(2);
m2_mc.gotoAndPlay(2);
normally I would assume this would play the movie clips…but it’s not…instead it goes to the specified frame and stops. I know I’ve done this before…any ideas what’s going on?