Вопрос наверно глупый, но не могу понять как задать переменную чтоб флеш принимал её извне (в коде на её месте стоит "123.mp3")

Код:
_soundbuftime = 6;
var checkplay:Boolean = true;
var cue:Number;
var mySound:Sound = new Sound();
mySound.loadSound("123.mp3",true);
play_mc.onRelease = function() {
mySound.start(cue);
};
pause_mc.onRelease = function() {
checkplay = false;
cue = Math.round(mySound.position/1000);
mySound.stop();
};
mySound.onSoundComplete = function() {
checkplay = true;
mySound.start();
};