0

I am trying to automate pressing CTRL+O button using AutoIt. I am not able to get the syntax right.Please help.Below is the code I am using.

WinActivate("XYZ")
Send("{LCTRL down}")
Send("{O}")
Send("{LCTRL up}")

What is wrong with this code ?

4

1 回答 1

1

根据AutoIt 文档,我认为这样做可以:

WinActivate("XYZ")
Send("^O")

如果这不起作用,您能否对此答案发表评论,我将进行调查和编辑。

于 2013-05-03T14:54:24.100 回答