# Hide handCursor inside loaded swf

**URL:** https://forum.kirupa.com/t/hide-handcursor-inside-loaded-swf/21917
**Category:** flash
**Created:** [May 27, 2003, 11:50pm UTC](https://forum.kirupa.com/t/hide-handcursor-inside-loaded-swf/21917 "2003-05-27T23:50:53Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Felipe\_Bastos](https://avatars.discourse-cdn.com/v4/letter/f/f05b48/32.png) [@Felipe\_Bastos](https://forum.kirupa.com/u/Felipe_Bastos)
#### Post date: [May 27, 2003, 11:50pm UTC](https://forum.kirupa.com/t/hide-handcursor-inside-loaded-swf/21917/1 "2003-05-27T23:50:53Z")

</div>

## 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?

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [May 28, 2003, 4:01pm UTC](https://forum.kirupa.com/t/hide-handcursor-inside-loaded-swf/21917/2 "2003-05-28T16:01:48Z")

</div>

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  
[AS]  
\_root.content.button1.useHandCursor = false;  
// to  
mcname.button1.usehandCursor = 0;[/AS]

and the same for button 2; then it will work

Cheers

SteveD
