Tyler
Tyler

Reputation: 37

VBScript sendkeys, Trying to do CTRL+ALT+DOWN

The code i am using is:

    set x = CreateObject("Wscript.shell")
    x.sendkeys("{CTRL}{ALT}{DOWN}")

Thanks for any help.

Upvotes: 0

Views: 1565

Answers (1)

Kevin Lee Drum
Kevin Lee Drum

Reputation: 13

When you want to use Ctrl and Alt as modifiers, use ^ and % respectively. So, in your case you want ^%{DOWN}.

Upvotes: 1

Related Questions