Search found 9428 matches

by lexikos
50 minutes ago
Forum: Bug Reports
Topic: [v2.0.14 bug] wheelDown/wheelUp not work
Replies: 2
Views: 204

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
Yesterday, 16:12
Forum: Wish List
Topic: add FileWrite function in alpha version
Replies: 8
Views: 805

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
Yesterday, 07:23
Forum: Bug Reports
Topic: Modified Remapping broken by 2.0.14 Topic is solved
Replies: 3
Views: 370

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
Yesterday, 07:13
Forum: AutoHotkey Development
Topic: 2.1 development put on hold?
Replies: 4
Views: 644

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
Yesterday, 06:03
Forum: Wish List
Topic: add FileWrite function in alpha version
Replies: 8
Views: 805

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

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

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

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

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

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

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

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

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...
by lexikos
07 May 2024, 04:06
Forum: AutoHotkey Development
Topic: v2.1-alpha.10
Replies: 9
Views: 6827

v2.1-alpha.10

Changed how KeyOpt (InputHook) applies option removal for SC-based keys. Changed WinTitles with two different ahk_id values to yield no match. Changed RegExReplace to support binary zero in Replacement. Implemented virtual references: Any object with a __value property may act as a virtual reference...
by lexikos
06 May 2024, 05:51
Forum: Announcements
Topic: v2.0.14
Replies: 14
Views: 26913

v2.0.14

Fixed the error dialog to handle letter key shortcuts even when text is focused. Fixed MonthCal W-n (number of month) width values to not be affected by DPI scaling. Fixed Click to not return an integer. Fixed detection of key::try { as an error. Fixed :B0*O:XY::Z to produce XYZ rather than XZ (supp...

Go to advanced search