This is probably pretty darned basic, but I can't seem to figure it out- What I have is a 3 frame movie with an MC that slides onto the stage via ActionScript that looks something like this:

//code in frame 1:

xpos=0;
ypos=225;

//Code in Frame 2:

setProperty("box", _x, xpos);
xpos= 2 + xpos;

setProperty("box", _y, ypos);

//Code in Frame 3:

gotoAndPlay(2);

And what I want to do is have it stop at a specific point and I'm having no luck at all....

Thanks for any help