Search found 8840 matches

by gregster
10 minutes ago
Forum: Gaming Help (v1)
Topic: Help With script. Topic is solved
Replies: 14
Views: 459

Re: Help With script. Topic is solved

You are obviously trying to run AHK v1 code with AHK v2. Either use v1 or change the syntax to v2.

btw, please use code tags when posting code:

ctags.png
ctags.png (14.18 KiB) Viewed 14 times
by gregster
Today, 07:43
Forum: Ich brauche Hilfe
Topic: Formatierte Signatur in Thunderbird
Replies: 4
Views: 122

Re: Formatierte Signatur in Thunderbird

Ich habe gesehen das es z.B. Word programmspezifisch funktionieren soll. Ich muss ehrlich gestehen, das suchen in diesem Forum ist eine Qual und funktioniert zum teil gar nicht. Ich bekomme immer die Meldung ich hätte eben schon gesucht und solle es in 30 Sekunden noch mal versuchen. Benutz doch un...
by gregster
Yesterday, 19:24
Forum: Ask for Help (v1)
Topic: The best software similar to Lua
Replies: 1
Views: 162

Re: The best software similar to Lua

Since you posted in the AHK help forum, I would suggest AutoHotInterception (AHI) by evilC (also available as a v2 libary) as an alternative (wrapping a third-party driver which can also be used with other programming languages). If it's better than using Lua, I don't know, but it can differentiate ...
by gregster
Yesterday, 17:27
Forum: Ask for Help (v2)
Topic: Send and the Emoji Panel
Replies: 5
Views: 245

Re: Send and the Emoji Panel

I can reproduce it (being on Win11 right now).
Different send modes, key delays or running as admin don't seem to help. Even pasting the clipboard via AHK doesn't work.
by gregster
Yesterday, 17:23
Forum: Ask for Help (v2)
Topic: Odd hotstring behavior. XXwholeword triggers...
Replies: 3
Views: 140

Re: Odd hotstring behavior. XXwholeword triggers...

On v2.0.14?
On v2.0.13, I don't see it. Edit: Correction: I just discovered that I am still on v2.0.12 on this computer. Will update later.
lexikos fixed a hotstring bug on the latest version - perhaps it has side effects...
by gregster
05 May 2024, 03:23
Forum: Ich brauche Hilfe
Topic: :cx*:: - Problem bei Autohotkey v1.1.33.10
Replies: 1
Views: 142

Re: :cx*:: - Problem bei Autohotkey v1.1.33.10

Willkommen im Forum! Warum? Weil du den Hotstring innerhalb eines "Wortes" (direkt hinter 22,33) tippst. Damit der Hotstring trotzdem auslöst, solltest du die ? -Option hinzufügen. Die C -Option (case-sensitive) ist in diesem Fall überflüssig, afaics. Und die X -Option bräuchtest du nur, wenn du ein...
by gregster
05 May 2024, 02:18
Forum: Ask for Help (v2)
Topic: Error in COM Word object when using a relative path to add a picture
Replies: 2
Views: 198

Re: Error in COM Word object when using a relative path to add a picture

The dot in the file path looks wrong: xrelPath := ".\media\MonaLisa.jpg"
What's the plan here? I don't think that a single . can be a valid name for a folder in Windows.
by gregster
04 May 2024, 16:55
Forum: Ask for Help (v1)
Topic: HoverScroll and Microsoft Edge
Replies: 23
Views: 2918

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
04 May 2024, 12:28
Forum: Ask for Help (v1)
Topic: HoverScroll and Microsoft Edge
Replies: 23
Views: 2918

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
04 May 2024, 11:41
Forum: Ask for Help (v1)
Topic: HoverScroll and Microsoft Edge
Replies: 23
Views: 2918

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
04 May 2024, 11:25
Forum: Ask for Help (v1)
Topic: HoverScroll and Microsoft Edge
Replies: 23
Views: 2918

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
04 May 2024, 11:21
Forum: Ask for Help (v1)
Topic: HoverScroll and Microsoft Edge
Replies: 23
Views: 2918

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
04 May 2024, 11:06
Forum: Ask for Help (v1)
Topic: HoverScroll and Microsoft Edge
Replies: 23
Views: 2918

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
04 May 2024, 09:54
Forum: Ask for Help (v1)
Topic: HoverScroll and Microsoft Edge
Replies: 23
Views: 2918

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
03 May 2024, 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: 221

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
03 May 2024, 17:38
Forum: Ask for Help (v1)
Topic: HoverScroll and Microsoft Edge
Replies: 23
Views: 2918

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
03 May 2024, 14:50
Forum: Ask for Help (v2)
Topic: Trying to do a image search with V2 scripts - keep getting error
Replies: 5
Views: 222

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: 149

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.

Go to advanced search