04-29-2006 04:10 PM
04-29-2006 04:54 PM
There is no built in way to control the mouse, so you will have to result to calling external code. In windows, this would be the SetCursorPos and Mouse_Event functions from user32.dll which you can call by using the Call Library Function node from the Advanced pallete. If you search the forums for terms like "simulate mouse" or similar you should find some examples.
As for the a stop hotkey, if you want something which will work in any case you should use the input VIs (also in the advanced palette) and you will be able to monitor which buttons on the keyboard are pressed. You can run this in a loop checking several times a second and stop the loop once you detect your keyboard combo.
05-01-2006 10:20 AM