ну примерно вот так если не чего не напутал.

Код:
svetbutton.onRelease = function (){
if (!this.flag) {
attachMovie("svet","svet_mc",getNextHighestDepth(),{_x:121, _y:148});
this.flag = true;
}
else {
this.flag = false;
this.onEnterFrame = function(){
if(svet_mc._currentframe!=1){
svet_mc.prevFrame();
}
else{
removeMovieClip(svet_mc)
delete this.onEnterFrame;
}
}
}
}