Apollys
Apollys
There were a few reasons I decided to use AHK for the GUI originally (mainly: zero extra python package dependencies, and I thought all PoE players use AHK anyway). Now...
There might not be an official resource on BaseTypes. The best I could find so far was: https://www.pathofexile.com/forum/view-thread/3160227/page/3 For now, we can have the BaseType box be an Edit element...
A list of BaseTypes is also required to parse the BaseType from Magic items correctly from non-alt-copied text. For example: - `The Shaper's Coral Ring of the Lynx` -> prefix...
This is definitely a good suggestion and something I want to add. In the meantime, just FYI, there is a manual workaround: - Open `Profiles\.changes` and look for lines matching...
Backend support added: `rename_profile` and `delete_profile`.
Potentially relevant: [Drag and drop in listbox](https://www.autohotkey.com/boards/viewtopic.php?t=77666)
This is low priority now, because we've handled this in the opposite direction. Whenever a profile is selected, the input filter is loaded, or the downloaded filter if the input...
Im also trying to accomplish this. Has anyone found a way to do this with the keyboard package?
Can we create a combo-hotkey with scan codes? E.g. ctrl-Numpad*
Solved: used **tuples** instead of lists. -- Am I using the wrong function? ``` File "scancodetest.py", line 12, in main keyboard.add_hotkey([29, 30], callback) File "C:\ProgramData\Anaconda3\lib\site-packages\keyboard\__init__.py", line 660, in add_hotkey _hotkeys[hotkey]...