Beispiel #1
0
  /** Moves the mouse cursor, possibly while clicking the specified (nonnegative) button. */
  public static void mouseAction(int x, int y, int whichButton, boolean buttonDown) {
    if (!sConnected) {
      return;
    }

    nativeMouseAction(x, y, whichButton, buttonDown);
  }