Page 1 of 1

Can I send "Alt+Shift+1" 3 keypad buttons at the same time by the script?

Posted: 26 Jan 2018 03:38
by kuiwu_cn
Can I send "Alt+Shift+1" 3 keypad buttons at the same time by the script?
Thanks very much.

Re: Can I send "Alt+Shift+1" 3 keypad buttons at the same time by the script?

Posted: 26 Jan 2018 04:50
by jupe
This should work I think, untested though

Code: Select all

 sendkeys "%+1";

Re: Can I send "Alt+Shift+1" 3 keypad buttons at the same time by the script?

Posted: 26 Jan 2018 04:56
by kuiwu_cn
Thank you very much for your reply. I can do this through VBS, and I've already verified it. I want to do it through the script of XYplorer.

Code: Select all

    set WshShell = WScript.CreateObject("WScript.Shell")
    WshShell.SendKeys "%+1"

Re: Can I send "Alt+Shift+1" 3 keypad buttons at the same time by the script?

Posted: 26 Jan 2018 05:05
by jupe
That was an XY Script I posted, what app are you trying to send the keys to? this will send them to the active window.