Problem with buttons in external swf

Hi,

I had tried to disable some button in external.swf which I loaded into the movieclip (mc_content) in the main.swf. The instance name of button in external movie is btn_1.

_root.mc_content.loadMovie(“external.swf”);
this works perfectly - it’s open that external.swf in main movie.

I have also a disable button (btn_disable) in main movie.

Code of btn_disable;

on (release) {
_root.mc_content.btn_1.enabled = false;
}

This shoud disable this btn_1 button, but…

I’ve also made button (btn_2) in main movie and use code:

on (release) {
_root.btn_2.enabled = false;
}

… and this works fine.

I had check all instance names and code rows, but i don’t found any errors. If you can help me with this problem, I would be very pleased. :slight_smile:

thanks in advance,

Tommi