Primo frame del tuo filmato
code:--------------------------------------------------------------------------------
Sou=new Sound(this);
Sou.attachSound("Sou");
--------------------------------------------------------------------------------
poi istanzi i tuoi pulsanti uno start l'altro pause.
Cancella le azioni sui tuoi pulsanti.
vai sul frame in cui ci sono i pulsanti e al frame metti questa azione
code:--------------------------------------------------------------------------------
pause.onRelease=function(){
Sou.stop();
};
start.onRelease=function(){
Sou.start(Sou.position/1000,999);
};
--------------------------------------------------------------------------------