Mouse

AsTeRICS Configuration Suite

Mouse

Component Type: Actuator (Subcategory: Input Device Emulation)

The Mouse component allows mouse cursor positioning and clicking on the computer the ARE is running on (by software emulation). The mouse x-position, y-position, press/release actions of three mouse buttons and mouse-wheel movements can be controlled via desired input values and event triggers.

Screenshot: Mouse plugin Mouse plugin

Please Note: Mouse emulation on Windows 7

The mouse emulation on Windows 7 does not always work as expected due to User Account Control (UAC) settings. Especially when you want to use the Windows 7 On-Screen-Keyboard dragging the keyboard does not work. To troubleshoot turn off the User Account Control (UAC) – change the level to "Never notify"

Input Port Description

  • mouseX [double]: The desired X-Position of the mouse. This input port supports synchronization
  • mouseY [double]: The desired Y-Position of the mouse. This input port supports synchronization
  • action [string]: Input port for a command string. This command string allows to modify the action of the next left mouse click - it can be set to trigger other types of mouse clicks. A command string may be composed of several items that are delimited by ',' or ' '. Following command strings are accepted:
    • "@MOUSE:nextclick,right": next left click event will create a right mouse button click.
    • "@MOUSE:nextclick,double": next left click event will create a double click.
    • "@MOUSE:nextclick,middle": next left click event will create a middle button click
    • "@MOUSE:nextclick,drag": next left click event will hold the left mouse button.
    • "@MOUSE:nextclick,release": next left click event will release the left mouse button.
    • "@MOUSE:action,enable": enables all mouse actions.
    • "@MOUSE:action,disable": disables all mouse actions.
    • "@MOUSE:action,toggle: enables / disables all mouse actions.

Event Listener Description

  • leftClick: An incoming event at this port creates a mouse button click. A left mouse button click will be generated, unless a valid "nextclick..." command has been received at the cmd input which changed the click type (see above).
  • middleClick: A click with the middle mouse button is generated.
  • rightClick: A click with the right mouse button is generated.
  • doubleClick: A double click with the left mouse button is generated.
  • dragPress: The left mouse button is pressed (but not released again).
  • dragRelease: The left mouse button is released.
  • wheelUp: The mouse wheel is turned one position from the user.
  • wheelDown: The mouse wheel is turned one position to the user.
  • activate: enables all mouse actions.
  • deactivate: disables all mouse actions.
  • toggle: enables / disables all mouse actions.
  • absolutePosition:after this event is triggered the incoming values for mouseX and mouseY are interpreted as absolute movement information
  • relativePosition:after this event is triggered the incoming values for mouseX and mouseY are interpreted as relative movement information
  • nextClickRight next left click event will create a right mouse button click.
  • nextClickDouble next left click event will create a double click.
  • nextClickMiddlenext left click event will create a middle button click
  • nextClickDrag next left click event will hold the left mouse button.
  • nextClickRelease next left click event will release the left mouse button.

Properties

  • enableMouse [boolean]: The value of this property specifies if all mouse actions are bypassed (false) or enabled (true).
  • absolutePosition [boolean]: If this property value is set to false, incoming values at the mouseX and mouseY input ports are interpreted as relative movement information. The values are summed up (integrated) to calculate the absolute position. If the property value is set to true, the values of the input ports are treated as absolute x/y positions.
  • xMin [integer]: The minimum value for the X-coordinate (the mouse will not move farther to the left).
  • xMax [integer]: The maximum value for the X-coordinate (the mouse will not move farther to the right). If the xMax property is set to 0, the horizontal screen resoltion will be assumed as maximum x-position for the mouse cursor.
  • yMin [integer]: The minimum value for the Y-coordinate (the mouse will not move farther up).
  • yMax [integer]: The maximum value for the Y-coordinate (the mouse will not move farther down) If the yMax property is set to 0, the vertical screen resoltion will be assumed as maximum y-position for the mouse cursor..