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

Change image from instance by clicking

Community Beginner ,
Apr 30, 2019 Apr 30, 2019

Copy link to clipboard

Copied

Hello

How can I do to change the image of the current instance to another image that is in the library by clicking the mouse?

This is my code that in addition to playing a sound also changed the image:

###########################

var music: Boolean = true;

button_1.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler_2);

function fl_MouseClickHandler_2(event: MouseEvent): void {

var Som: som_classe = new som_classe();

if (music == false) {

     SoundMixer.stopAll();

     musica = true;

}

else {

     Som.play();

     music = false;

}

#######################################

}

Thank you

Paulo Valentim

Views

651

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 , Apr 30, 2019 Apr 30, 2019

You will need to have a movieclip in the library with a link name if you want to do that or you could load images from a folder

in which case see this thread:

Load dynamic external image in animate cc canvas/javascript

Votes

Translate

Translate
Community Expert ,
Apr 30, 2019 Apr 30, 2019

Copy link to clipboard

Copied

With the instance selected, go to the Properties panel and to the right of "Instance of," click the button "Swap..." Animate will open a dialog that lists other symbols in your library. Select the one you want to replace the current symbol.

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 ,
Apr 30, 2019 Apr 30, 2019

Copy link to clipboard

Copied

Hello Myra Ferguson.

Thanks for the reply but I want to do this using action script.

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 ,
Apr 30, 2019 Apr 30, 2019

Copy link to clipboard

Copied

LATEST

You will need to have a movieclip in the library with a link name if you want to do that or you could load images from a folder

in which case see this thread:

Load dynamic external image in animate cc canvas/javascript

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