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

Duplicating a movie clip in animate by code

Community Beginner ,
Mar 24, 2020 Mar 24, 2020

Copy link to clipboard

Copied

Hi

How can I duplicate a movie clip in Animate using Javascript code?

Views

1.1K

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 Expert ,
Mar 24, 2020 Mar 24, 2020

Copy link to clipboard

Copied

Hi.

 

If by duplicating you mean cloning - keeping all transformations and other changes applied to an instance - then no. Unfortunately it's not possible to clone Movie Clip instances in CreateJS as stated here.

 

But if what you want is to only add instances of a symbol at runtime as it is in the Library, you could code something like this:

 

 

 

var platform = new lib.Platform();
this.addChild(platform);

 

 

 

 

Please let us know if you have any further questions.

 

 

Regards,

JC

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 ,
Mar 24, 2020 Mar 24, 2020

Copy link to clipboard

Copied

Thank you for your reply

It didn't work

The situation is that I have a movie clip called "spot" and I want to make several copies of it with the same propeties and I want to move each of them according to some conditions during interacting, so what is the best way to do this?

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 Expert ,
Mar 24, 2020 Mar 24, 2020

Copy link to clipboard

Copied

You're welcome.

 

Then you're gonna have to add new instances as I mentioned above and then manually assign to the new instances the properties (x, y, rotation, alpha, currentFrame, and so on) values from the ones that are already on stage.

 

Alternatively, you may want to search over the Internet if someone created a class or method for CreateJS/EaselJS that can duplicate Movie Clip instances.

 

Or maybe someone else here has a better answer than mine.

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 ,
Mar 24, 2020 Mar 24, 2020

Copy link to clipboard

Copied

IIRC the new lib thing only works if you assign a linkage name in the library.

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 Expert ,
Mar 24, 2020 Mar 24, 2020

Copy link to clipboard

Copied

Oh yeah. I forgot to mention that. Thanks, Clay!

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 ,
Mar 24, 2020 Mar 24, 2020

Copy link to clipboard

Copied

And how to do that? I mean the linkage?

I was trying the addChild and the addChildAt method but didn't work so far

 

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 Expert ,
Mar 24, 2020 Mar 24, 2020

Copy link to clipboard

Copied

In the Linkage column of the Library panel.

 

image.png

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 ,
Mar 24, 2020 Mar 24, 2020

Copy link to clipboard

Copied

Thank you very much

It really worked!!

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 ,
Mar 24, 2020 Mar 24, 2020

Copy link to clipboard

Copied

You've been a big help

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 Expert ,
Mar 24, 2020 Mar 24, 2020

Copy link to clipboard

Copied

LATEST

That's great!

 

You're welcome!

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