flex4 更改鼠标样式啊··
想把系统的那个默认的load样式替换掉。。
就是那个“小闹钟”
谁有例子啊??
[解决办法]
- XML code
<?xml version="1.0" encoding="utf-8"?><s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" creationComplete="initCursor()"> <fx:Script> <![CDATA[ import mx.managers.CursorManager; [Bindable] [Embed(source="Media/Plan.png")] public var cur:Class; private function initCursor():void { CursorManager.setCursor(cur); } </fx:Script> <fx:Declarations> <!-- 将非可视元素(例如服务、值对象)放在此处 --> </fx:Declarations></s:Application>
[解决办法]
鼠标本身没有busy不busy的
而是你自己加代码告诉程序什么时候应该是busy,呵呵
不知道你明白不
[解决办法]