Advertisement
aquajoker

look here 2

Jul 18th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. //////// music play/stop button alternate code
  2.  
  3. bt_play.addEventListener(MouseEvent.CLICK, musicplay);
  4. bt_stop.addEventListener(MouseEvent.CLICK, musicstop);
  5.  
  6. //fruitsparfait = name of music file, after changing to actionscript in library//
  7. var musicfile:Sound = new(fruitsparfait);
  8. var myChannel:SoundChannel = new SoundChannel();
  9.  
  10. function musicplay(event:MouseEvent):void {
  11. myChannel = musicfile.play();
  12. }
  13.  
  14. function musicstop(event:MouseEvent):void {
  15. myChannel.stop();
  16. }
  17.  
  18. https://78.media.tumblr.com/8c9506a9445d260be0b6ad80fe8f2558/tumblr_ovsyttBzwK1r967hko2_250.gif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement