00:00
00:00
Punisher33
just chillin me being me.

Age 38, Male

home

high school.

New york ny

Joined on 11/3/06

Level:
11
Exp Points:
1,120 / 1,350
Exp Rank:
58,683
Vote Power:
5.27 votes
Rank:
Town Watch
Global Rank:
66,529
Blams:
2
Saves:
106
B/P Bonus:
2%
Whistle:
Normal
Medals:
78

I hope a flash actionscripting 2 pro can help me.

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.


Comments

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.

Thank you very very much. i really appreciate it. thank you,

Did it work how you wanted it to?

I'm having issues. i hope you got my messege.