home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Freeware / Adobe Air 1.5 / AdobeAIRInstaller.exe / setup.swf / scripts / mx / managers / ICursorManager.as < prev    next >
Encoding:
Text File  |  2008-10-29  |  1002 b   |  37 lines

  1. package mx.managers
  2. {
  3.    public interface ICursorManager
  4.    {
  5.       function removeAllCursors() : void;
  6.       
  7.       function set currentCursorYOffset(param1:Number) : void;
  8.       
  9.       function removeBusyCursor() : void;
  10.       
  11.       function unRegisterToUseBusyCursor(param1:Object) : void;
  12.       
  13.       function hideCursor() : void;
  14.       
  15.       function get currentCursorID() : int;
  16.       
  17.       function registerToUseBusyCursor(param1:Object) : void;
  18.       
  19.       function setBusyCursor() : void;
  20.       
  21.       function showCursor() : void;
  22.       
  23.       function set currentCursorID(param1:int) : void;
  24.       
  25.       function setCursor(param1:Class, param2:int = 2, param3:Number = 0, param4:Number = 0) : int;
  26.       
  27.       function removeCursor(param1:int) : void;
  28.       
  29.       function get currentCursorXOffset() : Number;
  30.       
  31.       function get currentCursorYOffset() : Number;
  32.       
  33.       function set currentCursorXOffset(param1:Number) : void;
  34.    }
  35. }
  36.  
  37.