Ver Mensaje Individual
  #6 (permalink)  
Antiguo 01/09/2011, 15:32
fletcher2009
 
Fecha de Ingreso: noviembre-2010
Mensajes: 94
Antigüedad: 14 años
Puntos: 11
Respuesta: Agregar musica de fondo con On/Off

Bueno, como dije anteriormente de AS2 sé muy poco, pero si necesitas el código de AS3 sería el siguiente para botones on /pause

Código AS3:
Ver original
  1. var loadSnd:URLRequest = new URLRequest("NO.mp3");
  2. var thisSnd:Sound = new Sound();
  3. var sndTrans:SoundChannel = new SoundChannel();
  4. var song_position:Number;
  5. var song_paused:Boolean;
  6.  
  7. thisSnd.load(loadSnd);
  8.  
  9. play_btn.addEventListener(MouseEvent.CLICK, playF);
  10. stop_btn.addEventListener(MouseEvent.CLICK, pauseF);
  11.  
  12. function playF(event:MouseEvent):void{
  13.  
  14. sndTrans = thisSnd.play();
  15. if (song_paused){
  16. sndTrans.stop();
  17. sndTrans= thisSnd.play(song_position);
  18. song_paused=false;
  19. }
  20. }
  21.  
  22. function pauseF(event:MouseEvent):void{
  23.  
  24. song_position = sndTrans.position;
  25. sndTrans.stop();
  26. song_paused=true;
  27.  
  28.  
  29. }


Y aquí te dejo los archivos si los quieres chequear:

http://ifile.it/byvdx9g