Keydown/keyup doesn't seem to work in all cases.
Sendkey has always worked great :), but only one key at a time.
Keydown/keyup doesn't seem to work in all cases.
Sendkey has always worked great :), but only one key at a time.
works for me. types ')'
is this what you meant?Simba Code:program new;
begin
keyDown(16); //shift
keyDown($30); //0
keyUp($30);
keyUp(16);
end.
Hmm. I can't really say without testing it myself, but maybe activateClient() will help?