03-19-2008, 01:05 PM
How to send the following combination of keys using script as input:
CONTROL+DOWN ARROW+SPACE BAR?
I tried following code:
But i am not sure what should i use to send SPACE BAR as input?
If possible also suggest me how can i do "Left Mouse Click" while CTRL key is kept pressed?
Thanks in advance,
Regards,
Sandeep
CONTROL+DOWN ARROW+SPACE BAR?
I tried following code:
Code:
Set WshShell = CreateObject("WScript.Shell")
' Activate the browser window
WshShell.AppActivate "complexowl"
wait(3)
WshShell.SendKeys "^{DOWN}{[b]<SPACE>[/b]}"
But i am not sure what should i use to send SPACE BAR as input?
If possible also suggest me how can i do "Left Mouse Click" while CTRL key is kept pressed?
Thanks in advance,
Regards,
Sandeep