Ho provato a sostituire nel frame "Play" il codice da te segnalato, ma ho ottenuti alcuni errori.
Nel frame "Play" attualmente ho questo:
codice:
on (release) {
//Play button.
//Sound is not playing and has not been paused
if (playing!=true) {
if (paused!=true) {
playing=true;
paused=false;
stopped=false;
myConditionText="playing";
s.start(0,0);
}
//Sound has been paused
if (paused==true) {
playing=true;
paused=false;
stopped=false
s.start(myMusicPosition,0);
myConditionText="playing";
s.onSoundComplete = function() {
s.start();
}
}
}
}
Scrivimi per favore tutti passaggi se sbaglio nel procedere.
Grazie ancora.