Log in

View Full Version : VK_Keys



Failure
02-15-2012, 01:37 PM
Hey I need some help I try to do this

VK_LWIN

To open up the Start on my Desktop, however I keep getting this error (I'm not familiar with VK_Keys and the KeyDown(5B) wont work either)


[Error] (15:3): Internal error (20) at line 14

bg5
02-15-2012, 08:51 PM
keydown(91);
wait(10);
KeyUp(91);

http://www.cambiaresearch.com/articles/15/javascript-char-codes-key-codes

btw.

5b hex = 91 dec ,but if you write hex number in pascal you must write it this way $5b

Failure
02-15-2012, 10:12 PM
keydown(91);
wait(10);
KeyUp(91);

http://www.cambiaresearch.com/articles/15/javascript-char-codes-key-codes

btw.

5b hex = 91 dec ,but if you write hex number in pascal you must write it this way $5b

Thanks that worked, never knew about the $ thing thanks! :)