Set the position of the mouse cursor on the screen.
Availability:
First available in version 3.0 build 2039.
Input Parameters:
x - New x position of mouse cursor in pixels.
y - New y position of mouse cursor in pixels.
system - [Optional] - Indicates the coordinate system of the new x,y position. This can be the Flash coordinate system or the Screen coordinate system. Valid values include: flash and screen. Default value is Flash.
Output Parameters:
No output parameters.
Asynchronous Mode:
When this method is called asynchronously, a return object containing the output parameters is passed to the specified callback function.
ssCore.Mouse.setPosition( paramsObject [, callbackParamsObject] [, errorParamsObject] );
Synchronous Mode:
When this method is called synchronously, a return object containing the output parameters is returned to the caller immediately.
var returnObject = ssCore.Mouse.setPosition( paramsObject );
Notes:
None.
Examples:
ssCore.Mouse.setPosition({x:10, y:10, system:"flash"});