How do I send 'enter' while using sendkeys in simba? I could Google it to find the number I guess.
How do I send 'enter' while using sendkeys in simba? I could Google it to find the number I guess.
Finished B.S. Program in Radiology!!
Projects: A big one! Total secret! hehe
You could use "TypeByte(VK_ENTER);".
Current projects:
[ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]
"I won't fall in your gravity. Open your eyes,
you're the Earth and I'm the sky..."
VK_ENTER doesn't exist, keycode 13 is declared as "VK_RETURN" (would be good to have it as VK_ENTER aswell, though!)
Couple other ways would be...
1. Using PressKey:
2. KeyDown() + KeyUp() combination, with which you can use your own custom wait between the down and up parts:Code:begin PressKey(VK_RETURN); end.
Code:begin KeyDown(VK_RETURN); Wait(35 + Random(40)); // Replace with your own custom wait times.. KeyUp(VK_RETURN); end.
There are currently 1 users browsing this thread. (0 members and 1 guests)