I have a movieclip which I have named "char" as an instance name witch has 4 frames inside of it, all named "W" and en each of these 4 frames I have movieclips which play a charcater walking.
In my source code you can see I have a gotoAndPlay(2) method but when I debug without any errors or warnings it only plays one frame, frame 2, Instead of playing all the frames from frame 2 as its supposed to.
if (iswalking == true)
{
char.w.gotoAndPlay(2);
trace("running");
}
else
{
char.w.gotoAndStop(1);
}
Please help I've been stuck on this for ages