Search found 9433 matches

by lexikos
Today, 06:14
Forum: Wish List
Topic: Wish: Make GUI font size (e.g. Tooltip) responsive to HKCU\SOFTWARE\Microsoft\Accessibility\TextScaleFactor
Replies: 1
Views: 322

Re: Wish: Make GUI font size (e.g. Tooltip) responsive to HKCU\SOFTWARE\Microsoft\Accessibility\TextScaleFactor

ToolTip currently uses whatever default font Microsoft gave the ToolTip control. AutoHotkey does not set it. It would be possible, but would have to be opt-in somehow, as changes to default tooltip size could break some scripts. GUI does not respond to TextScaleFactor at all as far as I can tell. I ...
by lexikos
Today, 05:44
Forum: Bug Reports
Topic: Access Is Denied for WinGetProcessName in V2 EXE
Replies: 15
Views: 1017

Re: Access Is Denied for WinGetProcessName in V2 EXE

Again, it's not really about whether it's a bug or not All I said on that note was "This is not a bug." Whatever you think "it" to be about, this was about the issue you presented and its placement in the Bug Reports forum. Practical reasons for or against changes aren't about whether it's a bug or...
by lexikos
Yesterday, 06:28
Forum: Ask for Help (v1)
Topic: SC Code Error for Right Shift - v1.37.02
Replies: 1
Views: 244

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
Yesterday, 05:42
Forum: Bug Reports
Topic: Access Is Denied for WinGetProcessName in V2 EXE
Replies: 15
Views: 1017

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
Yesterday, 05:07
Forum: Bug Reports
Topic: [v2.0.14 bug] wheelDown/wheelUp not work
Replies: 4
Views: 373

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
13 May 2024, 16:46
Forum: Bug Reports
Topic: [v2.0.14 bug] wheelDown/wheelUp not work
Replies: 4
Views: 373

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

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

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

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

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

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

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

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

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

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

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 ...

Go to advanced search