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

Bring object to front dynamically doesn't work anymore

Community Beginner ,
Jun 04, 2020 Jun 04, 2020

Copy link to clipboard

Copied

Hello, I followed other threads to bring objects to the front dynamically through all the following scripts in HTML5.

 

// ES5 setChildIndex

this.bringToFront = function(e) {

    e.currentTarget.parent.setChildIndex(e.currentTarget, e.currentTarget.parent.numChildren - 1);

}

 

// ES6 setChildIndex

this.bringToFront = (e) => {

    e.currentTarget.parent.setChildIndex(e.currentTarget, e.currentTarget.parent.numChildren - 1);

}

 

// ES5 addChild

this.bringToFront = function(e) {

    e.currentTarget.parent.addChild(e.currentTarget);

}

 

// ES6 addChild

this.bringToFront = (e) => {

    e.currentTarget.parent.addChild(e.currentTarget);

}

 

None of these methods work any more. Maybe there was an update. Could anyone tell an alternate way?

TOPICS
ActionScript , Code , How to

Views

548

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

LEGEND , Jun 04, 2020 Jun 04, 2020

When Animate updated to CreateJS 1.0.0, they made a change that caused single-frame movieclips to loop continuously instead of just playing once and stopping. This causes the movieclip's display list to continuously reset.

 

So just stop() your container clips.

Votes

Translate

Translate
LEGEND ,
Jun 04, 2020 Jun 04, 2020

Copy link to clipboard

Copied

When Animate updated to CreateJS 1.0.0, they made a change that caused single-frame movieclips to loop continuously instead of just playing once and stopping. This causes the movieclip's display list to continuously reset.

 

So just stop() your container clips.

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 ,
Jun 04, 2020 Jun 04, 2020

Copy link to clipboard

Copied

LATEST

Thanks a lot 😄

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