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

Animate CC How To Stop All Movieclip animtion

Community Beginner ,
Jan 18, 2018 Jan 18, 2018

Copy link to clipboard

Copied

hi,

I have one animation banner, but i need end of the frame stop all moveclip animation.

i use more moveclip and instead animations same banner.

Please tell me how to stop all animations.

this.stop(); function not working.

thnks

Views

1.5K

Translate

Translate

Report

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

correct answers 1 Correct answer

Adobe Employee , Jan 19, 2018 Jan 19, 2018

Try using this:

/*

Stop the complete animation.

*/

createjs.Ticker.removeEventListener('tick', stage);

Votes

Translate

Translate
Adobe Employee ,
Jan 19, 2018 Jan 19, 2018

Copy link to clipboard

Copied

Try using this:

/*

Stop the complete animation.

*/

createjs.Ticker.removeEventListener('tick', stage);

Votes

Translate

Translate

Report

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
LEGEND ,
Jan 19, 2018 Jan 19, 2018

Copy link to clipboard

Copied

Bear in mind, that's somewhat like taking a nap by shooting yourself in the head. It will permanently stop everything.

Granted, that may be exactly what's needed in this particular situation. If not, as far as I'm aware there is no automatic way to issue a stop command to every movie clip. You'd have to do it manually, targeting every single movieclip in code.

Votes

Translate

Translate

Report

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 Beginner ,
Jan 19, 2018 Jan 19, 2018

Copy link to clipboard

Copied

LATEST

hi sir,

very thanks,

this is working.

Votes

Translate

Translate

Report

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