Reputation: 37
The code i am using is:
set x = CreateObject("Wscript.shell")
x.sendkeys("{CTRL}{ALT}{DOWN}")
Thanks for any help.
Upvotes: 0
Views: 1565
Reputation: 13
When you want to use Ctrl and Alt as modifiers, use ^
and %
respectively. So, in your case you want ^%{DOWN}
.
Upvotes: 1