PDA

View Full Version : Hide handCursor inside loaded swf



Felipe Bastos
May 27th, 2003, 07:50 PM
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?

SteveD
May 28th, 2003, 12:01 PM
Hi


On the stage I have a mc called "content" Inside another mc I have a button that loads a swf into "content"


is your button inside mc.content - it doesn't look like it from your post, so your pathing is wrong, change

_root.content.button1.useHandCursor = false;
// to
mcname.button1.usehandCursor = 0;

and the same for button 2; then it will work

Cheers

SteveD