I am trying to turn buttons off and back on from a loaded SWF.
When loading an external SWF into an empty MC, the bottons on the root are still active underneath the loaded SWF.
I am using the following code on the button which loads the external SWF
on (release) {
loadMovie(“1005.swf”,_root.location);
}
and then from the first frame of the the loaded SWF I have
_root.compact.enabled = false
_root.compact.enabled = true
this is not working; the buttons are still active…Can anyone please help.