Spencer Phillip Young
Spencer Phillip Young
Would be happy to contribute in this capacity.
If less than 2 choices are given, the function `to_list_of_str` in `choice_box.py` will add the additional choices 'Add more choices'.... ```python while len(choices) < 2: choices.append("Add more choices") ``` Currently,...
``` >>> box = eg.buttonbox('Test!', run=False) >>> box.msg Traceback (most recent call last): File "", line 1, in File "\easygui\boxes\button_box.py", line 182, in msg return self._msg AttributeError: 'ButtonBox' object has...
Specifically, I'm referring to `button_box.py`, but this issue is probably present in any box that uses a similar messageArea. When lines in a message are too long, text is hidden...
I'm proposing an enhancement to allow the separation of choice text from the value returned by selecting the choice by passing in a dict to the `choices` parameter where the...
Currently, the only way to run arbitrary autohotkey scripts is to use `run_script`, which only accepts a script as a string of the full script. Functionality should be added to...
Not sure what interface I want hotkeys to take. [keyboard](https://github.com/boppreh/keyboard) is a project that offers cross-platform hotkeys and keyboard actions. Not sure if to model after `keyboard` or do something...
Something like selenium's [`ActionChains`](https://selenium-python.readthedocs.io/api.html#module-selenium.webdriver.common.action_chains). Not sure if this is useful for people, so speak up if you like this.
Implement GUI interface. REF: https://www.autohotkey.com/docs/commands/Gui.htm - [ ] FileSelectFile - [ ] FileSelectFolder - [ ] Gui - [ ] Gui control types - [ ] GuiControl - [ ]...
Currently the directives implementations are incomplete. Particularly, directives which take in parameters are not fully implemented. I think defaults for arguments should be the same as in AutoHotkey, unless a...