Ao clicar no botão "play", o som começa a rolar, e apertando o botão ao lado "stop", o som pára. Parece simples, vamos lá:
Action:
var booleanClick:Boolean;
var objSound:Sound = new Sound();
objSound.attachSound("som");
btImg.onRelease = function(){
if(!booleanClick){
objSound.start(0, 0);
booleanClick = true;
}else{
objSound.stop();
booleanClick = false;
}
}
objSound.start( 0, 9999);
Botão play
objSound.start( 0, 9999);
Botão stop
objSound.stop();
O erro que tá dando é esse:
**Error** Scene=Scene 1, layer=Play, frame=1:Line 1: Statement must appear within on handler
objSound.start( 0, 9999);
Total ActionScript Errors: 1 Reported Errors: 1
Alguém poderia me dar um help?

Edição feita por: eduardo_, 10/12/2005, 22:17.