what i want for my show, is. for it to stop when my characters are speaking. so you can read it. and when you press spacebar. it continues with the scene.
just chillin me being me.
Age 38, Male
home
high school.
New york ny
Joined on 11/3/06
Posted by Punisher33 - May 17th, 2010
what i want for my show, is. for it to stop when my characters are speaking. so you can read it. and when you press spacebar. it continues with the scene.
Did it work how you wanted it to?
I'm having issues. i hope you got my messege.
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,