We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The text was updated successfully, but these errors were encountered:
#110 Added documentary list of engineering keybindings in doc/
b659a04
Also added orbit5sej.txt FWIW
Added a text file of the keys that hopefully can be easily changed into an "if elif elif elif" or similar block.
Sorry, something went wrong.
Excellent! In terms of writing the elif chain, I think it would look like this:
def keybinds(event): if event.char.lower() == 'a': my_function() elif event.char.lower() == 'b': my_other_function() button = tk.Button(parent) button.bind("<Key>", keybinds) button.pack()
No branches or pull requests
The text was updated successfully, but these errors were encountered: