Если кому-нибудь понадобиться, то я решил вопрос так:

Код:
import mx.events.EventDispatcher;
EventDispatcher.initialize(_root.btn);
_root.btn.onPress = function() {
this.dispatchEvent({type:"onButtonPress"});
};
_root.btn.addEventListener("onButtonPress", this);
onButtonPress = function () {
trace(1);
this.attachMovie("rek_lb", "rec", 1);
};