PDA

View Full Version : Typing Keyboard Virtual Keys



lanadekat
09-10-2016, 07:05 PM
http://docs.villavu.com/simba/scriptref/mouseandkeyboard.html

Above link includes all Virtual keys but I can't seem to get them to work?
What's the correct way to use them? Let's say I want to type backspace.

acow
09-10-2016, 07:11 PM
try https://msdn.microsoft.com/en-us/library/aa243025(v=vs.60).aspx

lanadekat
09-10-2016, 07:41 PM
try https://msdn.microsoft.com/en-us/library/aa243025(v=vs.60).aspx

SendKeys(Chr(8), 100, 30);
Seems to work, thank you!

acow
09-10-2016, 07:48 PM
SendKeys(Chr(8), 100, 30);
Seems to work, thank you!
Cheers, nice to see ya back & scripting btw =)