ok, I’m making a game: how do you: when I press up, I want it to play a few frames in the movie clip, when I let go, I want it to stop. same with down and left and right.
You mean like this?
not exactly, I want it to just play the animation inside the movie clip then stop when released, I already know how to just make the movie clip move, thanks anyway
ok, so instead of using AS to move the clip you can use nextFrame().
Example [AS]on (keyPress “<Up>”) {
this.nextFrame();
}[/AS]
I gotta go now, hopefully this helps you.