2010-04-01 8 views

답변

1

플래시 IDE에서 생성 된 애니메이션 애셋을 사용하고 Flex 앱에 퍼가기.

0

프로그래밍 방식으로 만들 수도 있습니다 (예 :

클래스 SampleCursor : flash.display.Sprite를 확장하여

cursorManager.removeAllCursors(); 
cursorManager.setCursor(SampleCursor); 
:

public class SampleCursor extends Sprite 
    public function SampleCursor() { 
     addEventListener(Event.ENTER_FRAME, drawCursor); 
    } 

    public function drawCursor(e:Event):void { 
     // Draw cursor using graphics context 
     // ... 
    } 
{ 

그리고 당신의 응용 프로그램에서 당신은 단지 (비트 맵 또는 플래시 자산과 같은 커서 다른 유형의 동일) 커서로이 클래스를 등록

도움이 되길 바랍니다.

관련 문제