# useHandCursor

**URL:** https://forum.kirupa.com/t/usehandcursor/290062
**Category:** flash
**Created:** [June 9, 2009, 9:59am UTC](https://forum.kirupa.com/t/usehandcursor/290062 "2009-06-09T09:59:02Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![angelbc](https://avatars.discourse-cdn.com/v4/letter/a/3e96dc/32.png) [@angelbc](https://forum.kirupa.com/u/angelbc)
#### Post date: [June 9, 2009, 9:59am UTC](https://forum.kirupa.com/t/usehandcursor/290062/1 "2009-06-09T09:59:02Z")

</div>

hi everybody  
i’m trying to use hand cursor with multiple addChild() function but it didn’t appear  
Where is the problem

function menuTxt(){

```
for (var j:Number = 0; j&lt;6; j++){
	
var arX:Array = new Array(109, 269.3, 441.4, 640.6, 804.4);
var arT:Array = new Array("&#1085;&#1072;&#1095;&#1072;&#1083;&#1086;","&#1079;&#1072; &#1093;&#1086;&#1090;&#1077;&#1083;&#1072;","&#1088;&#1077;&#1089;&#1090;&#1086;&#1088;&#1072;&#1085;&#1090;","&#1075;&#1072;&#1083;&#1077;&#1088;&#1080;&#1103;","&#1082;&#1086;&#1085;&#1090;&#1072;&#1082;&#1090;&#1080;");
var menuT:menuTXT = new menuTXT();

addChild(menuT).name = "menuT"+j;

menuT.x = arX[j];
menuT.y = 350;
menuT.buttonMode = true;
//menuT.useHandCursor = true;
menuT.d_txt.text = arT[j]||"";

menuT.addEventListener(MouseEvent.MOUSE_OVER, onMouseOver);
menuT.addEventListener(MouseEvent.MOUSE_OUT, onMouseOut);
}
}

```

function onMouseOver(e:MouseEvent){  
TweenMax.to(e.target, 1, {glowFilter:{color:0xffff00, alpha:0.5, blurX:10, blurY:10, strength:3}});  
}  
function onMouseOut(e:MouseEvent){  
TweenMax.to(e.target, 1, {glowFilter:{color:0xffff00, alpha:0, blurX:10, blurY:10, strength:3}});  
}
