How do I stop a loop?

How do I stop an animation from looping?

I attached the file that I need this done on.

Thank you,

Toad

just add action stop(); on the last keyframe…

In action script?

thank you,
toad

Create a new layer. Call this “Loop”.

In Frame 1 add these actions…

i += 1;

Now, on go to the Frame number of the very last frame (in your example it is Frame 36) and right click and add an empty keyframe.

Add these actions…

if (i == 2) {
	stop();
}

This will play it trough twice.

Thank you:)

You’re welcome:)