Autoit Click Keys together [duplicate]

倖福魔咒の 提交于 2020-01-22 03:49:06

问题


How do I click in Autoit Keys together and not one after another.

In my case I want to click following:

CTRL + ALT + SHIFT + +

That would be this in Autoit:

   Send("{RCTRL}")          
   Send("{RALT}")           
   Send("{RSHIFT}")         
   Send("{+}")          

But this does click the keys just one after another, but I want to click all at once. Is there any solution for this in autoit?


回答1:


Looked it up. I don't think you can select right shift specifically (or alt, or ctrl).

Send("!+^{+}")

or

Send("{SHIFTDOWN}{CTRLDOWN}{ALTDOWN}{+}{ALTUP}{CTRLUP}{SHIFTUP}")


来源:https://stackoverflow.com/questions/33667164/autoit-click-keys-together

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!