Skip to main content
Known Participant
September 26, 2020
Question

play audio from library

  • September 26, 2020
  • 1 reply
  • 337 views

usinf animate HTML5 Canvas, i need the very basic sctript to play sound from library

thank you

    This topic has been closed for replies.

    1 reply

    JoãoCésar17023019
    Community Expert
    Community Expert
    September 26, 2020

    Hi.

     

    - Go to the Library and give a linkage name to your sound.

     

    - Then use the static play method from SoundJS:

    createjs.Sound.play("Voice0");

     

    - If you want to stop the sound, you first store the AbstractSoundInstance that is returned by the play method in a variable or property and then use it as a reference later on. Like this:

    this.voice0 = createjs.Sound.play("Voice0");
    /*
    .
    .
    .
    */
    this.voice0.stop();

     

    I have a sample of a narrated story in my GitHub repo that demonstrates how to use this method to play voices and a background music to tell a story if you're interested.

    https://github.com/joao-cesar/adobe/tree/master/animate%20cc/html5_canvas/narrated_story

     

    I hope this helps.

     

    Regards,

    JC

    udikAuthor
    Known Participant
    September 26, 2020

    thank you