LEXiy, попробуйте в конструкторе слушать событие ADDED_TO_STAGE и по нему уже выполнять действия над кнопками, стопить, играть или что либо еще, что то типа:

Код AS3:
public function MButton()
{
if (stage) initInstance();
else addEventListener(Event.ADDED_TO_STAGE, initInstance);
}
protected function initInstance(event:Event = null):void
{
removeEventListener(Event.ADDED_TO_STAGE, initInstance);
this.stop();
}
AlexMakienko, может unloadAndStop вам поможет