Search found 58 matches

by Netmano
13 Sep 2022, 16:54
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 315
Views: 109412

Re: MouseGestureL

This is a fine example Pyonkichi! I will keep in mind what you said about unexpected problems. I was not aware of this MG_user.ahk implementation of MGL at all, your example provides inspiration for few potential ideas. it seems like a briilliant idea for my ahk programs to access MGL objects. I wil...
by Netmano
11 Sep 2022, 15:33
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 315
Views: 109412

Re: MouseGestureL

Pyonkichi I have this issue I failed to solve for the past few days, I am wondering If Pyonkichi can give me help with it. How can I release or temporarily "unhook" a MGL trigger that is currently being held down, using other Auothotkey scripts In MGL, I have these gestures defined: MG_Gesture_RB__...
by Netmano
01 Sep 2022, 06:46
Forum: Ask for Help (v1)
Topic: Is it possible to directly create .Symlink files in Autohotkey code?
Replies: 1
Views: 328

Is it possible to directly create .Symlink files in Autohotkey code?

Is it possible to directly create .Symlink files in Autohotkey code?
If it requires admin/UAC prompt, its okay with me
by Netmano
01 Sep 2022, 06:43
Forum: Scripts and Functions (v1)
Topic: WatchFolder() - updated on 2021-10-14
Replies: 150
Views: 88494

Re: WatchFolder() - updated on 2021-10-14

@just me
Hey, thanks for getting back to me.
I want to be notified only if the files contents has been edited
by Netmano
29 Aug 2022, 17:47
Forum: Ask for Help (v1)
Topic: How can I correctly quote Paths with spaces in them?
Replies: 2
Views: 873

How can I correctly quote Paths with spaces in them?

The below example does not execute as expected in Powershell: Path := """C:\Temp\Test 1.svg""" Run, C:\Program Files\PowerShell\7-preview\pwsh.exe -NoProfile -NoExit  -Command Set-MetaData -Path %Path% -Notes "Hello" ,, It will instead create a new file in Temp folder called Test But if the Path bei...
by Netmano
29 Aug 2022, 17:40
Forum: Ask for Help (v1)
Topic: WatchFolder() Function From Autohotkey Community
Replies: 2
Views: 539

Re: WatchFolder() Function From Autohotkey Community

WatchFolder("C:\Temp\",... An interesting "thing" is the usage of a trailing backslash in that path, while the specification is telling this... (while I'm not sure if both are related) :think: ; UserFunc - The name of a user-defined function to call on changes. The function must accept at least two...
by Netmano
29 Aug 2022, 08:27
Forum: Scripts and Functions (v1)
Topic: WatchFolder() - updated on 2021-10-14
Replies: 150
Views: 88494

Re: WatchFolder() - updated on 2021-10-14

I dont really know much of Autohotkey outside of Sendinput and sleep . I was able to put this together from reading this thread. Here is my code so far: #Persistent #Include, <WatchFolder> WatchFolder("C:\Users\...\Downloads", "ReportFunction", false, 1 | 2 | 4 | 8 |16 | 32 | 64 | 256) Return Report...
by Netmano
28 Aug 2022, 17:31
Forum: Ask for Help (v1)
Topic: WatchFolder() Function From Autohotkey Community
Replies: 2
Views: 539

WatchFolder() Function From Autohotkey Community

This is beyond my comfort zone of Sendinput and Sleep . Any help as to what am doing wrong, would much appreciated. I have found this function WatchFolder()updated on 2021-10-14 - AutoHotkey Community and using some of the examples shared on that thread I was ables to put this together: #Persistent ...
by Netmano
28 Jun 2022, 17:56
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 315
Views: 109412

Re: MouseGestureL

The long awaited V1.40 has been released, WOOOOHOOOOOO!!
I am so happy to see this update, so thanks so much! :happybday: :happybday:
by Netmano
02 Dec 2020, 12:24
Forum: Ask for Help (v1)
Topic: Help with understanding Controlsend please?
Replies: 10
Views: 1612

Help with understanding Controlsend please?

ControlSend,, test, ahk_exe notepad.exe The above works just fine but the following does not, it should englarge the text in notepad. ControlSend,, ^{+}, ahk_exe notepad.exe I have also, tried ControlSend,, {Control down}+{Control up}, ahk_exe notepad.exe I dont really care for notepad, I am just s...
by Netmano
04 Sep 2020, 08:35
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 315
Views: 109412

Re: MouseGestureL

@Pyonkichi
Hey I was finally able to test your suggestion today, it worked just fine
Now I understand how to use Sub Targets, Thanks allot
by Netmano
31 Aug 2020, 15:07
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 315
Views: 109412

Re: MouseGestureL

Hello I have a Target called Notepad that has only notepad.exe as its matching rule I want to create a Sub Target under Notepad that watches for File name notepad.exe and the title *example – Notepad as its matching rule This way so I can have context sensitive gestures depending on which Notepad do...
by Netmano
16 Aug 2020, 11:37
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1087
Views: 567814

Re: FindText - Capture screen image into text and then find it Topic is solved

First time using this library here, I am trying to see how it works for myself by creating my first example. but am stuck, when I click on "Capture" Findtext is capturing 15 centermetres beneath where my cursor actually is. I have not modified any of the code. I copied exerything as is and pasted in...
by Netmano
14 Aug 2020, 13:04
Forum: Scripts and Functions (v1)
Topic: [Base] array.ahk
Replies: 16
Views: 9658

Re: [Base] array.ahk

Sweet lord, this looks really intresting.

Thanks for putting it together!
by Netmano
14 Aug 2020, 13:03
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 315
Views: 109412

Re: MouseGestureL

It works :D though not as consistent but like you said its a tricky set up and not part of the intended design. I am currently in the proccess of learning More about programming and AHK. In good time I wish to write my own extensions/plug ins for MGL but your solution will do fine for now. Thanks fo...
by Netmano
14 Aug 2020, 12:13
Forum: Ask for Help (v1)
Topic: Help with Opening the about: links used specifically for Firefox from File explorer?
Replies: 2
Views: 1304

Help with Opening the about: links used specifically for Firefox from File explorer?

Help with opening the about: links used specifically for Firefox. More info https://developer.mozilla.org/en-US/docs/Mozilla/Firefox/The_about_protocol I am trying to open them from File explorer. I tried dragging about:addons URL from Firefox Adrress bar to Explorer. when I double click to open the...
by Netmano
12 Aug 2020, 12:38
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 315
Views: 109412

Re: MouseGestureL

Pyonkichi So I tried your suggestion to remove Remove MG_Abort(), its gotten me half way there. What is happening now is MB_8WU_ actionscript is excuted once and the next wheel wheel rotation executes MB_WU_ actionscript. MB_8WD.gif I am essentailly trying to get MB_8WU_ to act exactly like MB_WU_ ...
by Netmano
11 Aug 2020, 09:41
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 315
Views: 109412

Re: MouseGestureL

So I tried your suggestion to remove Remove MG_Abort(), its gotten me half way there. What is happening now is MB_8WU_ actionscript is excuted once and the next wheel wheel rotation executes MB_WU_ actionscript. MB_8WD.gif I am essentailly trying to get MB_8WU_ to act exactly like MB_WU_ . In the ca...
by Netmano
10 Aug 2020, 08:03
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 315
Views: 109412

Re: MouseGestureL

Pyonkichi Hey Pyonkichi, I am trying to program a new gesture. Wheel down/up while MB_8 is held in place and trigger not released. I've got it working. I am missing just one last thing. I can only trigger one wheel step and no more, after I am forced to release RB trigger. Is there a way to be able...
by Netmano
06 Aug 2020, 11:06
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 315
Views: 109412

Re: MouseGestureL

Nice! much better now

Go to advanced search