i would want to know how to press ctrl + x I couldn't workout how the char table works and could some one list the keys plz? thank you!
i would want to know how to press ctrl + x I couldn't workout how the char table works and could some one list the keys plz? thank you!
Hey, its fairly easy to get the key codes. In the SCAR manual, use the numbers between &#..;
Take that number for example for x it will be "& #120 ;" (without spaces) so take 120 and add it like this:
voila! thats it!SCAR Code:TypeByte(Chr(120));
Although I do not think there is a key code for CTRL ... I may be wrong.
SCAR Code:program New;
begin
KeyDown(VK_CONTROL);
Wait(20);
KeyDown(120);
Wait(20);
KeyUp(120);
KeyUp(VK_CONTROL);
end.
haha see I AM wrong xD
thx guys, is there a list for key functions somewhere?
Press CTRL + Space in Scar.
wow that was a big list i just want it narrowed down to keys that have to do with keyboard
Just type "VK_" and then press CTRL+Space
Ce ne sont que des gueux
http://www.bsdg.org/SWAG/DELPHI/0234.PAS.html
That's what I use, it's not completely accurate.
~Sandstorm
There are currently 1 users browsing this thread. (0 members and 1 guests)