I'm not a pro at actionscripting, but I can tell you how to do that for ActionScript 2.
How to get the movie to stop at a certain point:
1. Create a blank keyframe for the actionscript.
2. Right-click the blank keyframe and click "Actions". (Or select it and press F9.)
3. Put in this code:
stop();
That will make the movie stop at the point you want it to.
For spacebar action:
1. Create a Button symbol of any kind (it doesn't matter what it looks like).
You can animate it or whatever, but I'd prefer to keep it offscreen for keypresses.
2. Right-click it and select "Actions" (Or select it and press F9.)
MrAmature
I'm not a pro at actionscripting, but I can tell you how to do that for ActionScript 2.
How to get the movie to stop at a certain point:
1. Create a blank keyframe for the actionscript.
2. Right-click the blank keyframe and click "Actions". (Or select it and press F9.)
3. Put in this code:
stop();
That will make the movie stop at the point you want it to.
For spacebar action:
1. Create a Button symbol of any kind (it doesn't matter what it looks like).
You can animate it or whatever, but I'd prefer to keep it offscreen for keypresses.
2. Right-click it and select "Actions" (Or select it and press F9.)
3. Insert the following code:
on (keyPress "<Space>") {
play();
}
And that's how you do it.
Punisher33
Thank you very very much. i really appreciate it. thank you,