Ver Mensaje Individual
  #21 (permalink)  
Antiguo 09/08/2013, 11:57
Avatar de Bandit
Bandit
Moderador
 
Fecha de Ingreso: julio-2003
Ubicación: Lima - Perú
Mensajes: 16.726
Antigüedad: 21 años, 4 meses
Puntos: 406
Respuesta: Botón en AS3

Aquí tienes un ejemplo para reproducir y detener un sonido:
Código actionscript:
Ver original
  1. import flash.net.URLRequest;
  2. import flash.media.Sound;
  3. import flash.media.SoundChannel;
  4. import flash.events.Event;
  5. import flash.events.MouseEvent;
  6.  
  7. var ruta:URLRequest=new URLRequest("pp_musicax.mp3");
  8. var sonido:Sound = new Sound();
  9. var canal:SoundChannel = new SoundChannel();
  10. sonido.load(ruta);
  11. sonido.addEventListener(Event.COMPLETE, carga);
  12. function carga(event:Event):void {
  13.     btn_play.addEventListener(MouseEvent.CLICK, reprod);
  14.     btn_stop.addEventListener(MouseEvent.CLICK, detener);
  15. }
  16. function reprod(event:MouseEvent):void {
  17.     canal=sonido.play();
  18. }
  19. function detener(event:MouseEvent):void {
  20.     canal.stop();
  21. }
Espero haberte sido de ayuda.
__________________
Bandit.
Si no sabes estudia y si sabes enseña.
http://www.banditwebdesign.com/