Packageorg.openzet.managers
Classpublic class MDICursorManager

MDICursorManager class manages cursors for MDI. For each case, you can specify styles for each cursor. Types of these cursors are defined by this class's static constants.



Public Methods
 MethodDefined by
  
setCursor(cursorType:String):void
[static] Sets the current cursor.
MDICursorManager
Styles
 StyleDescriptionDefined by
  
sizeAllCursor
Type: Class   CSS Inheritance: no
Cursor style for all 4 directions's cursor (north, south, east and west). The default value is the "SizeAllCursor" symbol in the Assets.swf file..
MDICursorManager
  
sizeAllCursorXOffset
Type: Number   CSS Inheritance: no
The x offset of the sizeAllCursor, in pixels, relative to the mouse pointer. The default value is -10.
MDICursorManager
  
sizeAllCursorYOffset
Type: Number   CSS Inheritance: no
The y offset of the sizeAllCursor, in pixels, relative to the mouse pointer. The default value is -10.
MDICursorManager
  
sizeNESWCursor
Type: Class   CSS Inheritance: no
Cursor style for north/east and south/west direction's cursor. The default value is the "SizeNESWCursor" symbol in the Assets.swf file..
MDICursorManager
  
sizeNESWCursorXOffset
Type: Number   CSS Inheritance: no
The x offset of the sizeNESWCursor, in pixels, relative to the mouse pointer. The default value is -7.
MDICursorManager
  
sizeNESWCursorYOffset
Type: Number   CSS Inheritance: no
The y offset of the sizeNESWCursor, in pixels, relative to the mouse pointer. The default value is -7.
MDICursorManager
  
sizeNSCursor
Type: Class   CSS Inheritance: no
Cursor style for north and south direction's cursor. The default value is the "SizeNSCursor" symbol in the Assets.swf file..
MDICursorManager
  
sizeNSCursorXOffset
Type: Number   CSS Inheritance: no
The x offset of the sizeNSCursor, in pixels, relative to the mouse pointer. The default value is -10.
MDICursorManager
  
sizeNSCursorYOffset
Type: Number   CSS Inheritance: no
The y offset of the sizeNSCursor, in pixels, relative to the mouse pointer. The default value is -10.
MDICursorManager
  
sizeNWSECursor
Type: Class   CSS Inheritance: no
Cursor style for north/west and sout/east direction's cursor. The default value is the "SizeNWSECursor" symbol in the Assets.swf file..
MDICursorManager
  
sizeNWSECursorXOffset
Type: Number   CSS Inheritance: no
The x offset of the sizeNWSECursor, in pixels, relative to the mouse pointer. The default value is -7.
MDICursorManager
  
sizeNWSECursorYOffset
Type: Number   CSS Inheritance: no
The y offset of the sizeNWSECursor, in pixels, relative to the mouse pointer. The default value is -7.
MDICursorManager
  
sizeWECursor
Type: Class   CSS Inheritance: no
Cursor style for east and west direction's cursor. The default value is the "SizeWECursor" symbol in the Assets.swf file..
MDICursorManager
  
sizeWECursorXOffset
Type: Number   CSS Inheritance: no
The x offset of the sizeWECursor, in pixels, relative to the mouse pointer. The default value is -10.
MDICursorManager
  
sizeWECursorYOffset
Type: Number   CSS Inheritance: no
The y offset of the sizeWECursor, in pixels, relative to the mouse pointer. The default value is -10.
MDICursorManager
Public Constants
 ConstantDefined by
  SIZE_ALL : String = "sizeAll"
[static] Static constant represnting size cursor for all directions.
MDICursorManager
  SIZE_NESW : String = "sizeNESW"
[static] Static constant represnting size cursor for north/east and south/west directions.
MDICursorManager
  SIZE_NS : String = "sizeNS"
[static] Static constant represnting size cursor for north and south directions.
MDICursorManager
  SIZE_NWSE : String = "sizeNWSE"
[static] Static constant represnting size cursor for north/west and south/east directions.
MDICursorManager
  SIZE_WE : String = "sizeWE"
[static] Static constant represnting size cursor for east and west directions.
MDICursorManager
Method detail
setCursor()method
public static function setCursor(cursorType:String):void

Sets the current cursor. Types of available cursors are defined by this class's constants.

Parameters
cursorType:String — cursor type
Constant detail
SIZE_ALLconstant
public static const SIZE_ALL:String = "sizeAll"

Static constant represnting size cursor for all directions.

SIZE_NESWconstant 
public static const SIZE_NESW:String = "sizeNESW"

Static constant represnting size cursor for north/east and south/west directions.

SIZE_NSconstant 
public static const SIZE_NS:String = "sizeNS"

Static constant represnting size cursor for north and south directions.

SIZE_NWSEconstant 
public static const SIZE_NWSE:String = "sizeNWSE"

Static constant represnting size cursor for north/west and south/east directions.

SIZE_WEconstant 
public static const SIZE_WE:String = "sizeWE"

Static constant represnting size cursor for east and west directions.