Search found 3 matches

by Azona77
27 Apr 2024, 03:55
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 325
Views: 115973

Re: MouseGestureL

@Azona77, If your additional code is not much, I recommend using MG_User.ahk instead of the plugin. It can be opened by selecting "Edit User Extension Script" from the tray icon menu. Thank you so much~ It worked~ I simply pasted it into MG_User.ahk after line`Goto, MG_User_End`. Haven't found any ...
by Azona77
26 Apr 2024, 10:37
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 325
Views: 115973

Re: MouseGestureL

Hi, I've been using MouseGestureL for quite a while, but there are still two minor pain points: - After launching on startup, the MouseGestureL icon sometimes fails to show up in the task bar. I'm not sure if it is due to ahk itself? - How do I merge custom scripts into MouseGestureL? I have some v1...
by Azona77
02 Sep 2023, 10:23
Forum: 请求帮助
Topic: 对比两种写法的异同 Topic is solved
Replies: 1
Views: 961

对比两种写法的异同 Topic is solved

同样是使用“空格+A”触发,请问下面两种写法有什么异同吗?(ahk版本是1.1)
在触发逻辑上,好像是一致的?都不会影响空格和a键的功能?
其他方面,例如在性能上会有区别吗?

写法1:

Code: Select all

~Space & a::  
    Send, "Custom_Code"
return
写法2:

Code: Select all

a::
    If GetKeyState("Space")
    {
        Send, "Custom_Code"
    }
return

Go to advanced search