// 显示 手型鼠标样式
private function show_cur_hand(evt:MouseEvent):void{
evt.currentTarget.useHandCursor=true;
evt.currentTarget.buttonMode = true;
}
- //忙状态
- CursorManager.setBusyCursor();
-
- //改变鼠标样式
- [Bindable]
- [Embed(source="img/157.jpg")]
- public var cur:Class;
- private function initCursor(event:Event){
- CursorManager.setCursor(cur);
- }