Search found 113 matches

by Pyonkichi
21 Feb 2022, 02:06
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 336
Views: 130768

Re: MouseGestureL

@Epoch,
Sorry, my explanation was insufficient. I guess the cause of the issue is another gesture you set. So, I suggested registering only RB_WU_ and RB_WD_ first, adding other gestures one by one, and seeing which one is the problem.
The recognition settings seem to be fine.
by Pyonkichi
13 Feb 2022, 00:07
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 336
Views: 130768

Re: MouseGestureL

@Epoch, As far as I can see your code, it should work fine. You may need to create a clean MGL configuration for troubleshooting.
by Pyonkichi
11 Feb 2022, 20:45
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 336
Views: 130768

Re: MouseGestureL

Running MouseGestureL conflicts with Foxygestures on Firefox/Waterfox i.e it completely disables the actions of the addon. Which I guess it's normal. Is there any way I could possibly have MouseGestureL letting Foxygestures taking care of some gestures (the ones for simple tasks), then taking over ...
by Pyonkichi
11 Jan 2022, 01:18
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 336
Views: 130768

Re: MouseGestureL

Thanks. I will consider about the donation.
by Pyonkichi
27 Nov 2021, 10:46
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 336
Views: 130768

Re: MouseGestureL

@Epoch, here

Code: Select all

BlockInput, MouseMove
MG_Move()
Send, {Control Down}
MG_Click("LB")
Send, {Control Up}
BlockInput, MouseMoveOff
by Pyonkichi
27 Nov 2021, 01:51
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 336
Views: 130768

Re: MouseGestureL

@Epoch,
Call MG_Move() before sending a mouse click. You can add it by selecting "Move Cursor" in the action templates.
It is recommended to use "BlockInput, MouseMove" to ensure the operation.
by Pyonkichi
16 Oct 2021, 02:00
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 336
Views: 130768

Re: MouseGestureL

agustav3 , You can define a new trigger that combines both mouse buttons. You need to change the code in MG_Edit.ahk before creating the new trigger. Line 2225 - before: desc:=Trim(desc), name:=Trim(name), key:=RegExReplace(key,"\s","") Line 2225 - modified: desc:=Trim(desc), name:=Trim(name), key:...
by Pyonkichi
11 Aug 2021, 20:08
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 336
Views: 130768

Re: MouseGestureL

@jwwpua,
You can use MG_X and MG_Y that are gesture start coordinates.
Other built-in variables and functions are listed on the following help page.

Advanced usage > Advanced Supplementary Information > Utility variables and functions
by Pyonkichi
09 Aug 2021, 10:07
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 336
Views: 130768

Re: MouseGestureL

@submeg, dll or icl (icon library) can contain multiple icon resources. You can create icl by this software.
http://greenfishsoftware.org/gfie.php#apage

@jwwpua, no such option.
by Pyonkichi
04 Jun 2021, 05:17
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 336
Views: 130768

Re: MouseGestureL

@Patrick_Dayna, Enable this option.
by Pyonkichi
28 May 2021, 04:43
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 336
Views: 130768

Re: MouseGestureL

@maxsubs,
1. Save cursor coordinates when the button is pressed, and restore them in the action script of up and down gestures. It's just an idea, I've not tried.
2. Use 8__ rather than 8_. (Saving of cursor coordinates of above idea has to be assigned to 8_)
by Pyonkichi
18 Apr 2021, 22:58
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 336
Views: 130768

Re: MouseGestureL

@Alan_Breaker, My script must be assigned to RB__, not RB_. Did you do that?
by Pyonkichi
17 Apr 2021, 22:14
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 336
Views: 130768

Re: MouseGestureL

Alan_Breaker , There are restrictions, but this may work for your needs. if (GetKeyState("LButton", "P")) { ;Send, {LButton Up} Send, ^c flgCopied := true } else { if (flgCopied) { Send, ^v } else { Send, {RButton Up} } flgCopied := false } Ctrl + C does not work while mouse button is pressed on th...
by Pyonkichi
10 Apr 2021, 21:45
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 336
Views: 130768

Re: MouseGestureL

daniel , There are three ways. 1. Create a new trigger for the "+RButton". If you use this way, the default trigger of RB has to be modified to "RButton" from "*RButton". 2. Create another target for the Shift+RB. The new target has to include the Custom Condition defines "GetKeyState("Shift")". 3....
by Pyonkichi
09 Apr 2021, 01:25
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 336
Views: 130768

Re: MouseGestureL

@deama, If you don't use the right drag very often in Explorer, delete the sub target of "Explorer" named "Icon".
by Pyonkichi
02 Apr 2021, 20:00
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 336
Views: 130768

Re: MouseGestureL

@viv, Sub target must have a higher priority than parent.
https://www.autohotkey.com/boards/viewtopic.php?p=350348#p350348
by Pyonkichi
29 Mar 2021, 21:54
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 336
Views: 130768

Re: MouseGestureL

@viv,
Thanks for the reporting. I'll fix it in the next version.
The solution is the following change:

Code: Select all

Menu, %menuname%, Add, %ME_LngMenu000%, OnNone
	.
	.
	.
OnNone:
	return
by Pyonkichi
24 Mar 2021, 05:52
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 336
Views: 130768

Re: MouseGestureL

@viv, Yes, you cannot place actions outside the "if" branch when you use MG_Defer.
by Pyonkichi
23 Mar 2021, 06:20
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 336
Views: 130768

Re: MouseGestureL

viv , 1. Use "Execute After Recognition Process" of Script Control category. (The function name is MG_Defer) 2. That's one way too. Or replace default action "MG_WinActivate()" to the following script. if (!WinActive() && MG_WClass!="Chrome_WidgetWin_2") { WinActivate } If you don't want to activat...
by Pyonkichi
21 Mar 2021, 00:45
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 336
Views: 130768

Re: MouseGestureL

@viv, Thanks for the idea. I will consider it.

Go to advanced search