Search found 216 matches

by Leli196
30 Mar 2024, 13:44
Forum: Ask for Help (v1)
Topic: GuiClose odd behaviour 1GuiClose vs AnyThingElseGuiClose ? Topic is solved
Replies: 3
Views: 627

Re: GuiClose odd behaviour 1GuiClose vs AnyThingElseGuiClose ? Topic is solved

Since when is it like that? I always used 1GuiClose and 1GuiEscape in my old scripts. I have dozens of scripts that use it like that and I know for sure it worked. Now they are all broken and I have to remove the 1. I find this quite bad in terms of consistency when I specifically name the Gui 1: an...
by Leli196
14 Jun 2021, 12:09
Forum: Ask for Help (v1)
Topic: Search in documentation via URL + keyword? Topic is solved
Replies: 4
Views: 349

Re: Search in documentation via URL + keyword? Topic is solved

@Rohwedder @garry
Perfect! I want to use it as a UserDefinedCommand in Notepad++ and your suggestions work great.
by Leli196
14 Jun 2021, 03:45
Forum: Ask for Help (v1)
Topic: Search in documentation via URL + keyword? Topic is solved
Replies: 4
Views: 349

Search in documentation via URL + keyword? Topic is solved

Hi there, is it somehow possible to make a search in the AHK documentation with a keyword and the URL of the documentation? E. g. for Wikipedia it is possible with this URL: https://en.wikipedia.org/wiki/Special:Search?search= + keyword(s) I have not found a solution for the AHK documentation though...
by Leli196
19 Apr 2021, 07:04
Forum: Ask for Help (v1)
Topic: Modifiers getting stuck
Replies: 11
Views: 1247

Re: Modifiers getting stuck

lexikos Yeah, I realized that SciTE4AutoHotkey messes with AutoHotkey. However, the most important part came after I mentioned SciTE4AutoHotkey. Without SciTE4AutoHotkey running (and also TillaGoto) I have the problem that the modifiers are detected as physically down, although they are not held ph...
by Leli196
14 Apr 2021, 10:20
Forum: Ask for Help (v1)
Topic: Modifiers getting stuck
Replies: 11
Views: 1247

Re: Modifiers getting stuck

To my understanding in that case the keystrokes should not appear in KeyHistory , though. And in my case they do appear there. Or can they still be buffered and would appear in KeyHistory then? But if they are buffered and processed afterwards, why the completely (even allegedly physically) stuck ke...
by Leli196
14 Apr 2021, 10:02
Forum: Ask for Help (v1)
Topic: Modifiers getting stuck
Replies: 11
Views: 1247

Re: Modifiers getting stuck

Thanks for the good explanation lexikos I would be very grateful if you read this post, although it not that short. It took me a while to figure stuff out. I forgot to mention that the stuck keys do not happen always, but occasionally. It happens often when I try to provoke it by releasing the modi...
by Leli196
11 Apr 2021, 16:20
Forum: Ask for Help (v1)
Topic: Modifiers getting stuck
Replies: 11
Views: 1247

Re: Modifiers getting stuck

Well, that is a workaround, but no solution. I have many hotkeys with modifiers and not enough single keys to map them to, also it is inconvenient. I wonder why AHK makes the modifiers stuck in the first place. Everything seems correct in the KeyHistory at first, the modifiers get released (logicall...
by Leli196
11 Apr 2021, 12:35
Forum: Ask for Help (v1)
Topic: Modifiers getting stuck
Replies: 11
Views: 1247

Modifiers getting stuck

Hi there, I have a problem with modifiers getting stuck until I press them again physically. I noticed that this from time to time, but now have it narrowed down to (not exclusively) one hotkey and the problem persists if only this code is in the script: ^!+t:: SendInput, !{Enter} KeyWait, t if (A_T...
by Leli196
27 Mar 2021, 05:37
Forum: Ask for Help (v1)
Topic: #Volume_Up/#Media_Next hotkeys open start menu Topic is solved
Replies: 3
Views: 603

Re: #Volume_Up/#Media_Next hotkeys open start menu Topic is solved

Thanks a lot! For me, using the keyboard hook suffices:

Code: Select all

$#Volume_Up::return
$#Volume_Down::return
$#Media_Next::return
$#Media_Prev::return
by Leli196
26 Mar 2021, 13:36
Forum: Ask for Help (v1)
Topic: #Volume_Up/#Media_Next hotkeys open start menu Topic is solved
Replies: 3
Views: 603

#Volume_Up/#Media_Next hotkeys open start menu Topic is solved

Hi there, I have a script with this code in it: #Volume_Up::return #Volume_Down::return #Media_Next::return #Media_Prev::return Unexpectedly it opens the start menu on release of the Win key. It does not happen with hotkeys like #a:: . Am I missing something or has AutoHotkey a problem with these me...
by Leli196
09 Jan 2020, 17:58
Forum: Ask for Help (v1)
Topic: WheelUp/WheelDown hotkeys not suppressing original meaning properly
Replies: 1
Views: 539

Re: WheelUp/WheelDown hotkeys not suppressing original meaning properly

I still have this problem and actually it is not limited to WheelUp/Down , it happens with other hotkeys as well. When I use #m as a hotkey for example, sometimes (quite often actually) all windows get minimized, as this is the original meaning of the hotkey in Win 10. It is really annoying but I do...
by Leli196
31 Dec 2019, 05:20
Forum: Notepad++
Topic: Setup Notepad++ for AutoHotkey
Replies: 167
Views: 516623

Re: Setup Notepad++ for AutoHotkey

I did not, I think it is not possible.
by Leli196
23 Dec 2019, 14:43
Forum: Ask for Help (v1)
Topic: WheelUp/WheelDown hotkeys not suppressing original meaning properly
Replies: 1
Views: 539

WheelUp/WheelDown hotkeys not suppressing original meaning properly

Hi there, I have this code: ^WheelUp:: SendInput, {WheelUp} ^WheelDown:: SendInput, {WheelDown} or !WheelUp:: SendInput, {WheelUp} !WheelDown:: SendInput, {WheelDown} They do not fully suppress the original meaning of the hotkey. I have tested it with Chrome, Photoshop and PDF-XChange Editor. In PS ...
by Leli196
18 Dec 2019, 09:47
Forum: Notepad++
Topic: Setup Notepad++ for AutoHotkey
Replies: 167
Views: 516623

Re: Setup Notepad++ for AutoHotkey

Is there no way to get AutoComplete to display the calltips for commands? The file contains them, but I do not get them to show up, except for functions.
by Leli196
06 May 2019, 07:14
Forum: Ask for Help (v1)
Topic: SendInput with keydelay?
Replies: 6
Views: 3547

Re: SendInput with keydelay?

Alright, maybe another person is interested in answering my questions. :D I also recognized that slowing input down is also necessary sometimes because the input is too fast for a program. For example, when I want so send ^n{Alt}fs to SciTE4AutoHotkey to create a new doc and save it right away it is...
by Leli196
30 Apr 2019, 14:31
Forum: Ask for Help (v1)
Topic: SendInput with keydelay?
Replies: 6
Views: 3547

Re: SendInput with keydelay?

It is rather a general question and OpenOffice was just an example I sometimes use it for. When I have to adapt to an application I only use once in a while or really only once the advantage of automation is gone when it is only a short job. I then use SendEvent to slow the input down and I can see ...
by Leli196
29 Apr 2019, 08:52
Forum: Ask for Help (v1)
Topic: SendInput with keydelay?
Replies: 6
Views: 3547

Re: SendInput with keydelay?

I mean I want to watch the input. I often use AutoHotkey for small tasks that I semi-automate (e.g. while I hold the hotkey something is send into mutliple OpenOffice calc fields). When I use much time writing code then the benefit diminishes, so I would like to watch what AHK does to see any mistak...
by Leli196
26 Apr 2019, 16:20
Forum: Ask for Help (v1)
Topic: SendInput with keydelay?
Replies: 6
Views: 3547

SendInput with keydelay?

Hi there, SendInput is said to be the most reliable method to send keystrokes, but it does not support keydelay because of OS restrictions. I often want to automate keystrokes so that I do not need to type the same thing repeatedly but still monitor the application I use it for. Therefore it is impo...
by Leli196
26 Apr 2019, 15:32
Forum: Bug Reports
Topic: SendInput, {Raw}"{Tab}" -> Control key stuck
Replies: 9
Views: 4646

Re: SendInput, {Raw}"{Tab}" -> Control key stuck

I will probably use Text mode then. Perhaps what you meant was that "having #UseHook vs. not having #UseHook makes no difference, the problem still occurs in the same way", but that's not how it came out. That is exactly what I meant to say. Sorry for my misleading wording. Sometimes, even when you ...
by Leli196
22 Apr 2019, 07:07
Forum: Bug Reports
Topic: SendInput, {Raw}"{Tab}" -> Control key stuck
Replies: 9
Views: 4646

Re: SendInput, {Raw}"{Tab}" -> Control key stuck

First of all I need to correct myself: On my Win10 system the problem occurs in the way I mentioned at first, as well as the way Rohwedder posted. Only on the Win7 system it is limited to the latter. I replaced #InputLevel 1 by #UseHook and it changes nothing, the problem still occurs in the same wa...

Go to advanced search