我的问题非常简单,但在花了一些时间阅读AutoHotkey帮助并找不到答案后,我决定将其发布在这里。
我想要一个打开网页的脚本,如果它尚未打开的话。如果网页已打开,请将浏览器最大化到该页面。
这是我的代码:
!^j::
IfWinExist, https://webpage/index.php
WinActivate
IfWinNotExist, https://webpage/index.php
Run, https://webpage/index.php
Return
感谢任何帮助。
答案 0 :(得分:1)
好的,我解决了。我在使用函数和查询Web路径时遇到了一些麻烦,而不是Web标题。所以这里是新代码。
!^j::
If WinExist("The Title")
WinActivate
else
Run, https://webpage/index.php
Return