Skip to main content
Participant
June 29, 2020
Question

Animate Frames after action

  • June 29, 2020
  • 1 reply
  • 224 views

Hi,

I have a group of frames with the action"this.goToAndPlay(9);" inside of a symbol. The symbol has the action "this.Stop();" and also has frames after it. When I test in the browser, the group of frames 'action' plays and the symbol frames 'action' plays also. The frames after the symbol action frames do not play though. Basically, the frames after an action of "this.Stop(); " is not playing. When I take off "this.Stop();" the frames play but the action "this.goToAndPlay(9); is not completing fully.

 

This topic has been closed for replies.

1 reply

kglad
Community Expert
Community Expert
June 30, 2020

i'm not sure if you're using js or actionscript but both are case-sensitive and you have errors.

 

this.Stop() will fail, this.stop() will work.  

 

this.goToAndPlay(9) will fail, this.gotoAndPlay(9) will work.

 

ie, fix your code and the text in your next message if that above fails to help you fix the problem.

Participant
June 30, 2020
Hi,

I didn't want it to loop. The problem was that the animation would play
then stop. After it stops, the next layer is supposed to appear but it
doesn't. It stays on the stopped animation.