On the stage I have a mc called “content”
Inside another mc I have a button that loads a swf into “content”
on(release) {
_root.content.loadMovie(“file.swf”, 0);
On the first frame of the main stage I have this action:
_root.content.button1.useHandCursor = false;
_root.content.button2.useHandCursor = false;
I want to hide the hand cursor of the buttons inside the loaded swf, but these actions are notworking.
Can someone help me?