Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

how do i stop my flash animation from constantly looping even though i added stop code?

New Here ,
Jul 15, 2014 Jul 15, 2014

how do i stop my flash animation from constantly looping? I can't seem to find the answer. I put the stop(); code on it's own layer and at the end of the timeline. it still doesn't work when i test it or publish. I'm new to Flash.

TOPICS
ActionScript
140
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jul 15, 2014 Jul 15, 2014
LATEST

if you're publishing for html5, use:

this.stop();

to stop the timeline that contains the code.  if you want to stop other timelines, you must reference them.  eg,

mc1.stop();

mc2.stop();

mc2.mc3.stop();

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines