This is what I'm looking to do...
1)Click Space bar
2)Wait for 3 seconds
3)Click Shift bar
4)Wait for 2 seconds
5)Repeat
I tried using this...
begin
repeat
KeyDown(GetKeyCode('space'));
Sleep(400);
KeyUp(GetKeyCode('space'));
KeyDown(GetKeyCode('shift'));
Sleep(300);
KeyUp(GetKeyCode('shift'));
until(False);
end.
But I keep getting an error 'Line 4: [Error] (4:29): Type mismatch in script'


Reply With Quote









