Hi All
Is it possible to send a 2D array's index as a parameter to the mouseMove method in the robot class? example: r.mouseMove([1][2])
Kind regards
Feroze
Printable View
Hi All
Is it possible to send a 2D array's index as a parameter to the mouseMove method in the robot class? example: r.mouseMove([1][2])
Kind regards
Feroze
The method signature is:
mouseMove(int x, int y)
So long as you can supply two separate integer values as arguments then you are fine. Otherwise it won't work.