Replies: 1 comment 1 reply
-
Maybe there is another forum proper for Hammerspoon ? This one here https://www.autohotkey.com/boards/index.php you get help right away. It seems pretty dead around here, maybe I'm just talking to myself :( |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
With AutoHotkey I can create a GUI and add some function buttons to call a function to access an app's menu etc.., it can be set to AlwaysOnTop:
Gui, +AlwaysOnTop
Gui, Add, Button, x10 y50 w70 h25 gFunction1, Paste
Gui, Show, w200 h100
Function1:
WinMenuSelectItem, ahk_class Notepad, , Edit, Paste
Return
How can I do this with Lua in HammerSpoon ???
Beta Was this translation helpful? Give feedback.
All reactions