Search found 41 matches

by Epoch
16 May 2022, 19:05
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 326
Views: 116356

Re: MouseGestureL

The arrows are displayed incorrectly - in the interface and hints. arrows.png Would it be more correct to use the character codes from the 'Private Use Area'? MouseGestureL.ahk 3000 static DirD=0xF0EA, DirL=0xF0E7, DirR=0xF0E8, DirU=0xF0E9 3001 static Dir1=0xF0ED, Dir2=0xF0EA, Dir3=0xF0EE, Dir4=0xF...
by Epoch
16 May 2022, 18:38
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1092
Views: 591589

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

]@EpochHi Epoch. Here is a super simple script I use that may be what you want. Not sure. I use an Editing program, I have 3 icons that I want to click when I push a hotkey. So I just create a loop. The reason the loop works is because once the icon is clicked, the icons 'Change Colour'. therefor b...
by Epoch
16 May 2022, 13:03
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1092
Views: 591589

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

Thanks again for the heads up! The wider the error margin, the slower the search. 0.3 would process the image much slower than 0.05. My example wasn't the best for speed comparisons, because I wasn't sure how much your code relied on the default error margin, so I used 0.05 which should be a tiny bi...
by Epoch
15 May 2022, 19:44
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1092
Views: 591589

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

Thanks a lot for the reply, I really appreciate it! Your guide on the function has also helped in general while first trying to get my head around it and combining the searches under the same id definitely improved things, but in a true "Teach a man how to fish..." fashion, I do have some questions,...
by Epoch
14 May 2022, 14:35
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1092
Views: 591589

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

I'm trying to set F4 and F5 keys to change presets by finding and clicking the next/previous preset icons in different virtual instruments on an Audio Production program. For what I am currently trying to do, I am using a plugin host so the instruments open within a common GUI so unfortunately Winti...
by Epoch
20 Feb 2022, 10:13
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 326
Views: 116356

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. I've stopped using my current MouseGestureL, unzipped it in a new folder and started using that, not sure if you meant doing that. I've setup my gestures again from scra...
by Epoch
12 Feb 2022, 13:25
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 326
Views: 116356

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 Epoch
07 Feb 2022, 13:24
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 326
Views: 116356

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 f...
by Epoch
19 Dec 2021, 10:18
Forum: Ask for Help (v1)
Topic: Shortcut executed when reaching the right edge of the screen.
Replies: 6
Views: 972

Re: Shortcut executed when reaching the right edge of the screen.

A bunch of other "zone scripts" (screen edge triggers) on this forum could be adapted. For example? That's what I did to come up with the code I've posted and it partially works minus the #1 issue (cursor crossing a trigger line for a second time before crossing the other results in actions reverse...
by Epoch
19 Dec 2021, 09:42
Forum: Ask for Help (v1)
Topic: Shortcut executed when reaching the right edge of the screen.
Replies: 6
Views: 972

Re: Shortcut executed when reaching the right edge of the screen.

Why are you using a hotkey instead of just running a SetTimer ? Thanks for the reply. Well, that's because my AHK skills are limited, especially when it comes to commands I never had to use much so far and SetTimer is one of them. I have been studying some examples though and I suppose I'll eventua...
by Epoch
27 Nov 2021, 14:02
Forum: Ask for Help (v1)
Topic: Shortcut executed when reaching the right edge of the screen.
Replies: 6
Views: 972

Shortcut executed when reaching the right edge of the screen.

So, on Studio One (a DAW/Music Production Program) pressing Control+B opens/hides the "Browser" on the right edge of the screen so you can drag and drop instruments, effects and files . When you don't use it though, it's not really needed, taking screen space. So I tried to come up with a script tha...
by Epoch
27 Nov 2021, 11:42
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 326
Views: 116356

Re: MouseGestureL

@Epoch, here BlockInput, MouseMove MG_Move() Send, {Control Down} MG_Click("LB") Send, {Control Up} BlockInput, MouseMoveOff I was about to say it doesn't work either but I've decided to test with a "clean" MouseGestureL instance (unzipped the script and ran from a new folder) and it does work ther...
by Epoch
27 Nov 2021, 09:17
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 326
Views: 116356

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. Thanks for the reply and your good work with the script. Ah MG_Move() was seemingly the missing link in o...
by Epoch
26 Nov 2021, 10:35
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 326
Views: 116356

Re: MouseGestureL

I guess you would need something to reset the mouse cursor to the original position and then send control + click. I have seen other scripts do this, but unfortunately it's beyond my knowledge. Ah so maybe it isn't as simple as I thought after all. I suppose pulling that off with just AHK (leaving ...
by Epoch
26 Nov 2021, 07:22
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 326
Views: 116356

Re: MouseGestureL

Are you talking about an action that will open a link in a new tab, like middle clicking a link in Chrome? Well, I don't use Chrome but yes I suppose. Been using AHK for a while and while it's super useful for all kinds of things, it seems there are issues when it comes to mouse gestures initiated ...
by Epoch
25 Nov 2021, 20:13
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 326
Views: 116356

Re: MouseGestureL

Since Firefox addons do not allow gestures on every page for a while now, how could I simulate an “open link in a new background tab” by holding the right mouse button and drag the mouse downwards? The default shortcut is “control+Left click” over a link. The problem is, the script doesn’t take in a...
by Epoch
14 Jun 2021, 08:37
Forum: Ask for Help (v1)
Topic: Scraping then pasting multiple variables
Replies: 9
Views: 1721

Re: Scraping then pasting multiple variables

the point is, ure asking how to compose a song, when u dont yet know how to pluck the strings(no pun intended lol). a musician's gotta practice You do have a point there. I guess you could say I am trying to buildup calluses, however, since I need to play some chords right now, I also use the quick...
by Epoch
13 Jun 2021, 14:53
Forum: Ask for Help (v1)
Topic: Scraping then pasting multiple variables
Replies: 9
Views: 1721

Re: Scraping then pasting multiple variables

Why the code in question in this case picks the first result? because i just so decided it ought to do that. the search page list a bunch of results https www.igdb.com /search?type=1&q=gta+5. chances are the first one is gonna be what ure after? No, no, I got that. I wasn't trying to figure why you...
by Epoch
12 Jun 2021, 14:15
Forum: Ask for Help (v1)
Topic: Scraping then pasting multiple variables
Replies: 9
Views: 1721

Re: Scraping then pasting multiple variables

#NoEnv #Warn All #SingleInstance Force #Requires AutoHotkey v1.1.33+ SetBatchLines -1 igdbSearchURL := "https www.igdb.com /search?type=1&q=" Broken Link for safety InputBox gameToSearchFor, type a game name gameSearchURL := igdbSearchURL . StrReplace(gameToSearchFor, A_Space, "+") ; replace spaces...
by Epoch
05 Jun 2021, 08:11
Forum: Ask for Help (v1)
Topic: Scraping then pasting multiple variables
Replies: 9
Views: 1721

Re: Scraping then pasting multiple variables

Thanks a lot for your reply as well as taking the time to answer my questions. I have already started studying some of the variables and commands you mentioned. And while I am looking forward to learn more stuff about AHK because I understand it's such a powerful tool and I am all about "teach a ma...

Go to advanced search