Send windows key in vbs?

前端 未结 5 829
生来不讨喜
生来不讨喜 2021-01-12 18:12

I\'ve looked everywhere for this, is it actually possible to do? If you press WIN + LEFT ARROW it will mount your selected window to the left of your screen, and that\'s exa

5条回答
  •  时光说笑
    2021-01-12 18:55

    VBScript's SendKeys doesn't support the Windows key.


    You can use AutoIt instead:

    Send("{#Left}")
    

提交回复
热议问题