所以我最近刚为学校项目编写了一个简单的AHK GUI,并且想知道我是否有办法在Mac上运行它?如果没有,是否有可以使用的等效程序?它不一定非常类似于我的AHK程序,但我非常感谢有关如何编程将按键发送到活动窗口并可轻松下载的GUI的任何建议。非常感谢。我的AHK计划可以在下面找到。对不起我的新手问题。
#NoEnv
#MaxHotkeysPerInterval 99000000
#HotkeyInterval 99000000
#KeyHistory 0
ListLines Off
Process, Priority, , A
SetBatchLines, -1
SetKeyDelay, -1, -1
SetMouseDelay, -1
SetDefaultMouseSpeed, 0
SetWinDelay, -1
SetControlDelay, -1
SendMode Input
#singleinstance force
Gui, +alwaysontop
Gui, Color, purple
Gui,Font, s24, Arial Black
Gui, Add, Button, x5 y5 gBuzzer, BUZZ
Gui, Show, x800 y100 w145 h90, Online Certamen Buzzer
Gui +Resize -MaximizeBox ; Change the settings of the default GUI window.
Gui -MinimizeBox
Return
Buzzer:
{
Send, !{Esc} ; Changed from Alt+Tab
Send, {!}buzz{Enter}
}
Return
Esc::ExitApp
GuiClose:
ExitApp