08/11/2009, 15:03
|
| | Fecha de Ingreso: octubre-2005
Mensajes: 98
Antigüedad: 19 años, 3 meses Puntos: 0 | |
Respuesta: Problemas con audio de la web y un video Probé de dos maneras lo que me dijiste...
Código:
if(this.currentFrame == 1){
play();
var sndTrack:SoundTrack = new SoundTrack();
var sndControl:SoundChannel;
sndControl=sndTrack.play(0,999);
}
onbtn.addEventListener (MouseEvent.CLICK,soundOn);
offbtn.addEventListener (MouseEvent.CLICK,soundOff);
function soundOn (event:MouseEvent):void
{
sndControl = sndTrack.play(0,999);
}
function soundOff (event:MouseEvent):void
{
sndControl.stop();
}
Código:
if(this.currentFrame == 1){
}
play();
var sndTrack:SoundTrack = new SoundTrack();
var sndControl:SoundChannel;
sndControl=sndTrack.play(0,999);
onbtn.addEventListener (MouseEvent.CLICK,soundOn);
offbtn.addEventListener (MouseEvent.CLICK,soundOff);
function soundOn (event:MouseEvent):void
{
sndControl = sndTrack.play(0,999);
}
function soundOff (event:MouseEvent):void
{
sndControl.stop();
}
|