Skip to content

Instantly share code, notes, and snippets.

@behreajj
Created July 24, 2021 21:09
Show Gist options
  • Save behreajj/d9f49f0822df6d2cbd63b0b3251938ac to your computer and use it in GitHub Desktop.
Save behreajj/d9f49f0822df6d2cbd63b0b3251938ac to your computer and use it in GitHub Desktop.
Alt Hotkeys
local dlg = Dialog { title = "Alt Hotkeys" }
dlg:button {
id = "a",
text = "&ABC",
onclick = function()
app.alert("A")
end
}
dlg:button {
id = "b",
text = "A&BC",
onclick = function()
app.alert("B")
end
}
dlg:button {
id = "c",
text = "AB&C",
onclick = function()
app.alert("C")
end
}
dlg:show { wait = false }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment