JonathanWu

Results 10 comments of JonathanWu

I have the same problem. The key `shift` I detected was a delay in the original shift key function. Do you know who can help us? ``` keyboard.add_hotkey('shift+tab', alt_handler, suppress=True,...

> I have the same problem. The key `shift` I detected was a delay in the original shift key function. Do you know who can help us? > > ```...

根据之前的Issues,找到(https://github.com/thqby/ahk2_lib.git), 我在那里看了好久, 没看到直接相关的.ahk. 难道指的是'import_v1lib.ahk' 这个调用方法? 可以指点一下吗?

我使用AutoHotKey V1 写了很多游戏脚本, 其中使用了BeautifulToolTip这个库, 他除了漂亮之外, 还能解决一些很大的问题。就是全屏游戏会失去焦点这个问题, 然后就导致切换至游戏外面. 在使用BeautifulToolTip过程中, 没有一次,因为他而失去焦点切换至游戏外面. 我确实希望有一个V2的版本, 这样我就可以用AutoHotKey V2 来写脚本了. 很久以前就想改为 V2 了, 但是就是舍不得这个BeautifulToolTip库.

我在这个[ahk66网站](https://www.ahk66.com/1051)看到了似乎关于BeautifulToolTip v2版本的信息 我现在就去详细看一看是不是真的

根据网站里的信息找到了Github 的地址:[liuyi91](https://github.com/liuyi91/ahkv2lib-)

> @JoanthanWu Maybe you can help me? > > 1. How can I display the tooltip in the center of the screen? > 2. How can I change the text...

> > 我在这个[ahk66网站](https://www.ahk66.com/1051)看到了似乎关于BeautifulToolTip v2版本的信息 我现在就去详细看一看是不是真的 > > BeautifulToolTip v2版本跑通了吗 可以

@xRyul @Meixu-Chen #### I found a way to keep him from shaking. **shaking:** ``` ![|175x203](./attachments/黑头酸臭蚁_大小_20251002.jpg) ``` **No sharking:** ``` ![Add the name|175x203](./attachments/黑头酸臭蚁_大小_20251002.jpg) ``` The difference is they've added a *picture...

> 我也碰上了类似的问题。 这是因为代码里:单击模式 必定是阻塞模式 `util/client_shortcut_handler.py`: ``` def bond_shortcut(): if Config.hold_mode: keyboard.hook_key(Config.shortcut, hold_handler, suppress=Config.suppress) else: # 单击模式,必须得阻塞快捷键 # 收到长按时,再模拟发送按键 keyboard.hook_key(Config.shortcut, click_handler, suppress=True) ```