Спасибо, iNils. Хомутом меньше.
Так все заработало:

Код:
...
var mySound:Sound;
// = new Sound();
var targetSl_mc = this.sl_mc;
function callback() {
targetSl_mc.gotoAndStop(1);
checkplay = true;
mySound = null;
}
//++++++ Воспроизвести трек ++++++
play_btn.onRelease = function() {
if (checkplay) {
this._parent.sl_mc.gotoAndStop(2);
mySound = new Sound();
mySound.onSoundComplete = callback;
cue = 0;
mySound.loadSound("1.mp3", true);
} else {
mySound.start(cue);
}
};
...
И, вопрос про видимость из mySound.onSoundComplete или function callback(). Я применил
targetSl_mc. А можно ли обратиться напрямую?