Search found 8832 matches

by gregster
Today, 16:55
Forum: Ask for Help (v1)
Topic: HoverScroll and Microsoft Edge
Replies: 23
Views: 2730

Re: HoverScroll and Microsoft Edge

After restart it's working without shutting down. But I can't detect the change in wheel motions like it used to work before. I don't know what's wrong with it. Is there a changes in wheel motion? For testing, I simply suggested a hotkey for the down arrow key on the keyboard. Since my crystal ball...
by gregster
Today, 12:28
Forum: Ask for Help (v1)
Topic: HoverScroll and Microsoft Edge
Replies: 23
Views: 2730

Re: HoverScroll and Microsoft Edge

I don't really know how to use functions of AutoHotKey. i tried to edit script file to add down::Hoverscroll() at last line like this. is this way right that you suggested? ;f(t) = At + B A := (MaxLines - MinLines) / (MinInterval - Threshold) B := MaxLines - (A * MinInterval) Lines := Round(A * T +...
by gregster
Today, 11:41
Forum: Ask for Help (v1)
Topic: HoverScroll and Microsoft Edge
Replies: 23
Views: 2730

Re: HoverScroll and Microsoft Edge

There is some documentation included in the original topic by Scoox (on the archived forums): https://www.autohotkey.com/board/topic/99405-hoverscroll-verticalhorizontal-scroll-without-focus-scrollwheel-acceleration/
by gregster
Today, 11:25
Forum: Ask for Help (v1)
Topic: HoverScroll and Microsoft Edge
Replies: 23
Views: 2730

Re: HoverScroll and Microsoft Edge

I tried just now with now with v1.1.37.02 - and I added a hotkey at the end (see my post above), which will also make the script #persistent.
On Firefox and my editor, it worked.
by gregster
Today, 11:21
Forum: Ask for Help (v1)
Topic: HoverScroll and Microsoft Edge
Replies: 23
Views: 2730

Re: HoverScroll and Microsoft Edge

Afaics, the script above wouldn't do anything by itself - it's just a library, without any defined hotkeys, which could be included in a main script which contains the hotkeys calling the functions (of course, these hotkeys could also be created in the script itself). So, it's the expected result th...
by gregster
Today, 11:06
Forum: Ask for Help (v1)
Topic: HoverScroll and Microsoft Edge
Replies: 23
Views: 2730

Re: HoverScroll and Microsoft Edge

So, the uncompiled scripts don't work either? Then, compiling them usually won't help a bit. If you only have problems with the exe-files, it could still be an antivirus false positive issue. Which version did you use to run/compile? In doubt, I would try the lastest v1 version first, and then - if ...
by gregster
Today, 09:54
Forum: Ask for Help (v1)
Topic: HoverScroll and Microsoft Edge
Replies: 23
Views: 2730

Re: HoverScroll and Microsoft Edge

The link from poiuz's post gives me the 404 page not found error, so you may also have to hunt another source. Only the github link is dead - the attached link below it, which links to a zip-file on our website, works however. (Right above the line which says '(4.51 KiB) 'Downloaded 74 times' or si...
by gregster
Yesterday, 18:25
Forum: Ask for Help (v2)
Topic: Code should be working only in a window with a specific title Topic is solved
Replies: 3
Views: 203

Re: Code should be working only in a window with a specific title Topic is solved

No, not really for specific but for general hotkeys, in order to end a section in which you defined contex-sensitive hotkeys or hotstrings. To turn off context sensitivity, specify #HotIf without any expression. That's the same like using a simple #IfWinActive or #If without anything else in v1 - in...
by gregster
Yesterday, 17:38
Forum: Ask for Help (v1)
Topic: HoverScroll and Microsoft Edge
Replies: 23
Views: 2730

Re: HoverScroll and Microsoft Edge

If anyone has an exe file of HoverScroll() 1.04, please upload it. Because all the ahk files I found by Googling don't work. The uncompiled v1 script HoverScroll 1.04 can be downloaded from poiuz's post above . If it works, you could easily compile it with the ahk2exe compiler - included with AHK v...
by gregster
Yesterday, 14:50
Forum: Ask for Help (v2)
Topic: Trying to do a image search with V2 scripts - keep getting error
Replies: 5
Views: 179

Re: Trying to do a image search with V2 scripts - keep getting error

As a string, the file name should be quoted.
Compare https://www.autohotkey.com/docs/v2/lib/ImageSearch.htm#ExBasic

Or simply use the variable imagePath which you defined earlier (unquoted).
by gregster
02 May 2024, 05:45
Forum: Forum Issues
Topic: Can post new topic in this forum
Replies: 1
Views: 120

Re: Can post new topic in this forum

Afaik, this is a known forum bug for new user accounts , especially before they even try to submit something (immediately after pushing the 'New Topic' button). For now, the best way to solve it seems to be following the advice in the error message - just submit your post (again). That usually works.
by gregster
01 May 2024, 07:02
Forum: Ask for Help (v2)
Topic: Why codes disabled my "6" key..?
Replies: 4
Views: 207

Re: Why codes disabled my "6" key..?

Good point, boiler. On my german keyboard layout, ^ has its own key and can be reached without Shift (it's a dead key , though). Here, the hotkey combo ^ & LShift::MsgBox triggers a msgbox - but it has no relation to the 6 key and doesn't disable it. akirofe might have a third layout with different ...
by gregster
01 May 2024, 06:14
Forum: Ask for Help (v2)
Topic: Why codes disabled my "6" key..?
Replies: 4
Views: 207

Re: Why codes disabled my "6" key..?

I tried the first 700 lines - and it didn't disable 6.
Perhaps there is something in the included media.ahk...

I mean, it's all hotkeys. Should be easy to isolate the part which is creating problems by removing sections iteratively.
by gregster
30 Apr 2024, 11:15
Forum: Ask for Help (v1)
Topic: Send #r sends r in Windows-Hotkey
Replies: 4
Views: 374

Re: Send #r sends r in Windows-Hotkey

Both work here with latest v1.
What's the context? When do you press these key combos? Is this the whole code you are running while testing?
I would check the KeyHistory.
by gregster
30 Apr 2024, 05:15
Forum: Ask for Help (v2)
Topic: Can't get a simple SendInput script to work Topic is solved
Replies: 2
Views: 238

Re: Can't get a simple SendInput script to work Topic is solved

Try SendInput("^!{Numpad3}") Afaik, < and > are only supported in hotkey definitions (left side of the :: ), not with Send and its variants. At least, they won't do what you seem to expect - they will send a literal character, though (which might or might not interfere with what you are doing). The ...
by gregster
29 Apr 2024, 16:38
Forum: Ask for Help (v2)
Topic: Making mouse wheel click generate left mouse button double-click
Replies: 4
Views: 1794

Re: Making mouse wheel click generate left mouse button double-click

ma_j wrote:
29 Apr 2024, 16:34
Hi, how can I produce a double click by *clicking" the mouse wheel instead of rolling it up or down?
Try

Code: Select all

Mbutton::Click 2
by gregster
29 Apr 2024, 10:42
Forum: Ask for Help (v1)
Topic: Pixel searching finding incorrect colour Topic is solved
Replies: 2
Views: 227

Re: Pixel searching finding incorrect colour Topic is solved

You are not using the correct number format for hex numbers, starting with 0x : ColorID The decimal or hexadecimal color ID to search for, by default in Blue-Green-Red (BGR) format, which can be an expression. Color IDs can be determined using Window Spy (accessible from the tray menu) or via PixelG...
by gregster
26 Apr 2024, 16:43
Forum: Scripts and Functions (v1)
Topic: GDI+ standard library 1.45 by tic
Replies: 441
Views: 249928

Re: GDI+ standard library 1.45 by tic

Say this 1.96 is not up to speed with the latest AHK 2.0.12 is it? I see byref in there and VarSetCapacity which have been deprecated. But is there a newer port? Or a better up-to-date lib? What should one use nowadays? 🤔 Haven't used GDI+ with AHK v2 yet, but there is eg this: https://github.com/b...

Go to advanced search