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

Code for stop and play audio in diferent buttons

New Here ,
Nov 07, 2019 Nov 07, 2019

Copy link to clipboard

Copied

I have a problem, a made three buttons for my animation, Pause, Play and Stop these have the function whit the time line but i hadnt could that music also stop, play and return in HTML5 canvas. I tried to use this code in the pause button but didnt work:

 

this.PauseButton.addEventListener(MouseEvent.CLICK, fl_ClickToStopAllSounds_5);

function fl_ClickToStopAllSounds_5(event:MouseEvent):void
{
SoundMixer.stopAll();
}

Please what is the correct code for this function.

TOPICS
ActionScript , Code , How to

Views

1.0K

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

Community Expert , Nov 07, 2019 Nov 07, 2019

well yes the code I gave you stops the music. So if you want it to start again you have to program that into your button

 

createjs.Sound.play();

Votes

Translate

Translate
Community Expert ,
Nov 07, 2019 Nov 07, 2019

Copy link to clipboard

Copied

none of that is canvas/html5 code.  is that what you're trying to create?

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
New Here ,
Nov 07, 2019 Nov 07, 2019

Copy link to clipboard

Copied

The animation is in Canvas/html5, the buttons works when i need that stop, play and return but only de animation, the sound still play when I click in pause button. I didnt find the code or the way for i can work.

 

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 ,
Nov 07, 2019 Nov 07, 2019

Copy link to clipboard

Copied

hi Paula

try using createjs.Sound.stop(); to stop all sounds.

or if you wanted to separate them you can place synced sounds in a movieclip and then control them by playing or stopping the associated movieclip.

 

Hope that helps.
mark

Consulting | Design | Motion | Training>headTrix, Inc. | Adobe Certified Training & Consulting<br />Consulting | Design | Development | Training

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
New Here ,
Nov 07, 2019 Nov 07, 2019

Copy link to clipboard

Copied

Thanks!! this code createjs.Sound.stop(); works when i click on pause button, the animation and the music stop but when i click on play button the animation continue but the music is off..

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 ,
Nov 07, 2019 Nov 07, 2019

Copy link to clipboard

Copied

LATEST

well yes the code I gave you stops the music. So if you want it to start again you have to program that into your button

 

createjs.Sound.play();

Consulting | Design | Motion | Training>headTrix, Inc. | Adobe Certified Training & Consulting<br />Consulting | Design | Development | Training

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