Spencer Phillip Young
Spencer Phillip Young
Hmm. It may be tricky to freeze `ahk` in its current state. Right now, I [build the path](https://github.com/spyoungtech/ahk/blob/master/ahk/script.py#L31) to templates folder using `__file__` attribute of the `script` module. When running...
The implementation of [`Window.click`](https://github.com/spyoungtech/ahk/blob/master/ahk/window.py#L527-L537) does use AutoHotkey's `ControlClick`, as seen [here](https://github.com/spyoungtech/ahk/blob/master/ahk/templates/window/win_click.ahk#L3). My guess is that this is an AHK and application-specific issue, as certain applications may react differently to `ControlClick`...
Hmm. It's hard for me to imagine how there's much difference, since this library simply calls `ControlClick` through AHK. Try this: ```python import logging logging.basicConfig(level=logging.DEBUG) from ahk import AHK ahk...
Interesting. I see that in your script, you are adding some options like `, left, U, NA`. That could be making the difference here. I also noticed you're using `ahk_class`...
I'd be happy to look into adding this functionality. @lesterfan could you help me by pointing to the AHK docs for this or an example AHK script? Would adding [SysGet](https://www.autohotkey.com/docs/commands/SysGet.htm#Monitor)...
Thanks for the feedback on this and use cases. I think my next step will be to implement `SysGet`. Might get around to that this weekend or the next. I'll...
Yeah, I think it makes sense to implement clipwait and other similar functionality for clipboard
I believe, if you know what arguments are expected, you can actually instantiate the incomplete directives. So, specifically, the goal here is to add `__init__` methods to incomplete directives and...
Directives, as in AutoHotkey script directives. Some examples include `#NoEnv` `#NoTrayIcon` `#Persistent` and many more. The wrapper implements these in [directives.py](https://github.com/spyoungtech/ahk/blob/master/ahk/directives.py) -- For instance, the implementation of [ClipboardTimeout](https://github.com/spyoungtech/ahk/blob/master/ahk/directives.py#L51-L54) maps to...
Thanks for tracking down the breaking change. I'll see if I can update the code to play nice in selenium 3.x and 4.x For now, I've set `selenium < 4`...