Can anyone help me with a small problem that I'm having.
Im trying to create a platformer, where the charecter runs when you press left or right.
The code that im using is:
if (Key.isDown(Key.LEFT)) {
_x -= speed;
this.gotoAndPlay(17);
_xscale = +scale;
My problem is that in my run cycle when you hold down left it stops at the first frame of the run cycle(17)
is there anyway that it will play through the run cycle.
P.S.Im using AS2
