编写Autohotkey脚本以调用“Shift + F5”键击

时间:2013-04-01 10:59:09

标签: autohotkey

我必须运行一些应用程序,如浏览器和票证工具。但是,我需要不断按Shift + F5键击来重新加载浏览器和票务工具的页面。

我是否可以通过autohotkey使用任何脚本来定期间隔20秒重复调用“Shift + F5”键?

有人可以帮我编写autohotkey脚本来调用'Shift + F5'键击吗?

1 个答案:

答案 0 :(得分:0)

我认为您希望能够打开/关闭此功能

#SingleInstance Force
#installKeybdHook
#Persistent

#F5:: ; [Win]+[F5] to start timer
SetTimer, RefreshPage, 20000
TrayTip, Refresh, Started, 1
ToolTip, Refresh Active
Return

+#F5:: ; [Shift]+[Win]+[F5] to stop timer
SetTimer, RefreshPage, Off
TrayTip, Refresh, Stopped, 1
ToolTip
Return

RefreshPage:
    Send, +{F5}
Return