主题:  seHandCursor的意思是什么,具体怎么用!

dearsammi

职务:普通成员
等级:1
金币:0.0
发贴:103
#12002/7/3 18:25:27
seHandCursor的意思是什么,具体怎么用!
_root.onLoad=function(){
    sammi.useHandCursor=0
    
    }
是什么意思
useHandCursor的意思是什么,具体怎么用!
谢谢
请举例说明!

SAMMI



Demon.S

职务:版主
等级:5
金币:10.0
发贴:2468
#22002/7/3 19:03:43
按钮的手图标是否显示



dearsammi

职务:普通成员
等级:1
金币:0.0
发贴:103
#32002/7/4 11:40:42
this.createEmptyMovieClip("mybttn",1)
mybttn.beginFill(0xCCCCCC,100)
mybttn.lineTo(100,0)
mybttn.lineTo(100,100)
mybttn.lineTo(0,100)
mybttn.lineTo(0,0)
mybttn.hitArea=mybttn
mybttn.mybttn_col=new Color(mybttn)
mybttn.onRollOver=function(){
this.mybttn_col.setRGB(0x147885)
}

mybutton.onRelease=function(){
this.mybttn_col.setRGB(0x000000)
}

mybttn.hitArea=mybttn

mybttn.mybttn_col=new Color(mybttn)

mybttn.onRollOver=function(){
this.mybttn_col.setRGB(0x147885)
}

mybutton.onRelease=function(){
this.mybttn_col.setRGB(0x000000)
}
请分别解释一下好吗
mybttn.hitArea=mybttn 的意思是将MC转化成BUTTON吗?
为什么mybttn.hitArea=mybttn只可以等于mybttn呢?我要等于SAMMI怎么写呢?
谢谢

mybutton.onRelease=function(){
this.mybttn_col.setRGB(0x000000)
}
为什么无效呢?