gpt4 book ai didi

AutoHotKey IfWinActive 不起作用

转载 作者:行者123 更新时间:2023-12-02 21:09:01 29 4
gpt4 key购买 nike

我正在尝试使用一个简单的脚本,该脚本仅在事件窗口打开并且您位于该窗口中时才有效(例如某些窗口模式游戏)。所以脚本可以工作,但它也可以在事件窗口之外工作,例如也可以在桌面或浏览器上使用。我不需要那个。我需要它仅在我设置的事件窗口中工作。

脚本:

RButton::rightMouseClick()
rightMouseClick(){
if WinActive("ahk_class Notepad") {
WinMaximize
Send, Some text.{Enter}
return
}
}

因此,当您转到记事本并右键单击时,此示例即可运行。但现在右键单击在计算机上的其他任何地方都不起作用?只有按住shift才有效?!

如何使此脚本仅在事件窗口是记事本时才 react /工作/运行?并且无法在全局范围内工作。

最佳答案

这是我的建议:

#If WinActive("ahk_class Notepad") ;if the window with the ahk_class "Notepad" is active
RButton:: ;this hotkey is only enabled while the above statement is true
WinMaximize ;maximize the active window
Send, Some text.{Enter} ;send some keyboard input
Return ;end of the hotkey
#If ;end of the special "#If" statement

仅正确的缩进就可以帮助理解代码。

关于AutoHotKey IfWinActive 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34560664/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com