Search found 9431 matches

by lexikos
Today, 06:28
Forum: Ask for Help (v1)
Topic: SC Code Error for Right Shift - v1.37.02
Replies: 1
Views: 89

Re: SC Code Error for Right Shift - v1.37.02

This is by design, so I have moved the topic out of Bug Reports. Also note that no one is maintaining v1.1. See End of Life: v1.1 . RShift is released immediately, but it is not by send {sc036 up} . You can confirm that KeyWait is not returning early by checking ListLines or KeyHistory, or by adding...
by lexikos
Today, 05:42
Forum: Bug Reports
Topic: Access Is Denied for WinGetProcessName in V2 EXE
Replies: 13
Views: 795

Re: Access Is Denied for WinGetProcessName in V2 EXE

Retrieving the name of a process the direct way (i.e. without enumerating all processes) requires the PROCESS_QUERY_LIMITED_INFORMATION access right to the process. If you are denied access, you get an error by design. This is not a bug. Are there any cases where the existence of a window belonging ...
by lexikos
Today, 05:07
Forum: Bug Reports
Topic: [v2.0.14 bug] wheelDown/wheelUp not work
Replies: 3
Views: 284

Re: [v2.0.14 bug] wheelDown/wheelUp not work

Slight correction: v2.1-alpha.5 and later support remapping to/from the wheel.
by lexikos
Yesterday, 16:46
Forum: Bug Reports
Topic: [v2.0.14 bug] wheelDown/wheelUp not work
Replies: 3
Views: 284

Re: [v2.0.14 bug] wheelDown/wheelUp not work

That has never been valid/supported. The following keys are not supported by the built-in remapping method: The mouse wheel (WheelUp/Down/Left/Right). Source: Remapping Keys (Keyboard, Mouse and Controller) | AutoHotkey v2 Use Send, so they will be hotkeys, not remapping. XButton1 & WheelUp::Send "{...
by lexikos
12 May 2024, 16:12
Forum: Wish List
Topic: add FileWrite function in alpha version
Replies: 8
Views: 833

Re: add FileWrite function in alpha version

Removing a thing which is already implemented, guaranteed by documentation and has been used for 20 years is quite different to doing nothing; i.e. not implementing a new function.
by lexikos
12 May 2024, 07:23
Forum: Bug Reports
Topic: Modified Remapping broken by 2.0.14 Topic is solved
Replies: 3
Views: 387

Re: Modified Remapping broken by 2.0.14 Topic is solved

But I do not want Alt to be pressed down again. Why not? If you press LAlt+w twice in a row without releasing LAlt, it will not work the second time if LAlt has been released by Send and not "pressed down again". This is what Send does with physical keys when you do not use Blind, or when you exclu...
by lexikos
12 May 2024, 07:13
Forum: AutoHotkey Development
Topic: 2.1 development put on hold?
Replies: 4
Views: 675

Re: 2.1 development put on hold?

I didn't take the time to reply because the reason I opened the forum was to release v2.1-alpha.10. ;) Seriously though, there are only so many hours in the day. It takes time to document changes, even just bug-fixes, and make the release actually work. For v2.0.13, there was a sequence of last-minu...
by lexikos
12 May 2024, 06:03
Forum: Wish List
Topic: add FileWrite function in alpha version
Replies: 8
Views: 833

Re: add FileWrite function in alpha version

It can be done with a simple one-liner. Why should the interpreter and documentation be inflated with these small but completely redundant functions? For matters of convenience, there are solutions that don't involve adding more redundant built-in functions, or waiting for someone else to do it for ...
by lexikos
07 May 2024, 06:58
Forum: Wish List
Topic: add FileWrite function in alpha version
Replies: 8
Views: 833

Re: add FileWrite function in alpha version

Code: Select all

FileOpen(path, "w").Write(text)
by lexikos
07 May 2024, 06:57
Forum: Bug Reports
Topic: MonthCal Week Number is incorrect on Windows 11 Topic is solved
Replies: 2
Views: 610

Re: MonthCal Week Number is incorrect on Windows 11 Topic is solved

Fixed by v2.0.14 (documentation for #1, behaviour for #2).
by lexikos
07 May 2024, 06:47
Forum: Bug Reports
Topic: Click should return "" just like MouseClick Topic is solved
Replies: 13
Views: 535

Re: Click should return "" just like MouseClick Topic is solved

The unintended integer return is fixed by v2.0.14.

The return value is intentionally still unspecified.
by lexikos
07 May 2024, 06:39
Forum: Bug Reports
Topic: InputHook does not exclude suppression for ENTER key Topic is solved
Replies: 3
Views: 246

Re: InputHook does not exclude suppression for ENTER key Topic is solved

[v2.1-alpha.10]: If the name is handled by SC, the option is also removed from the corresponding VK (i.e. regardless of whether the name is handled by VK or SC, the option is removed from both).
Source: InputHook - Syntax & Usage | AutoHotkey v2
by lexikos
07 May 2024, 06:35
Forum: Bug Reports
Topic: an issue on "~!= Up::Ctrl" Topic is solved
Replies: 3
Views: 280

Re: an issue on "~!= Up::Ctrl" Topic is solved

The error is detected in v2.0.13.
by lexikos
07 May 2024, 06:17
Forum: Wish List
Topic: Notify if not UTF-8? -- [Update: Not possible, me thinks]
Replies: 15
Views: 1077

Re: Notify if not UTF-8? -- [Update: Not possible, me thinks]

Descolada I wrote the code that reads script files, and one of its optimizations is that it bypasses translation for ASCII characters. I obviously know that all of the encodings supported by AutoHotkey contain ASCII as a subset. My point is that upon finding the directive, the program has to check ...
by lexikos
07 May 2024, 05:42
Forum: Bug Reports
Topic: WinTitle with multiple ahk_id uses only last one Topic is solved
Replies: 6
Views: 414

Re: WinTitle with multiple ahk_id uses only last one Topic is solved

WinExist("ahk_id " hwnd1 " ahk_id " hwnd2) returns 0 if hwnd1 and hwnd2 are not equal in v2.1-alpha.10. I decided that it would not be appropriate to add this previously undocumented behaviour in a bug-fix release.
by lexikos
07 May 2024, 05:31
Forum: Bug Reports
Topic: Modified Remapping broken by 2.0.14 Topic is solved
Replies: 3
Views: 387

Re: Modified Remapping broken by 2.0.14 Topic is solved

Your script was relying on a bug. The behaviour of your script was incorrect. Now it is correct (pressing <!w produces !^w). Fixed Send to leave any prior { modifier Down} in effect even if the key happens to be physically held down. Source: Changes & New Features | AutoHotkey v2 {Alt down} Holds Al...

Go to advanced search