Search found 625 matches

by Ragnar
15 Aug 2023, 08:21
Forum: Suggestions on Documentation Improvements
Topic: Allowing multiple options separated by a space not stated for most Gui methods Topic is solved
Replies: 2
Views: 1177

Re: Allowing multiple options separated by a space not stated for most Gui methods Topic is solved

Thanks for reporting. I've added it. The change is currently not visible due to the "under attack" mode.
by Ragnar
15 Aug 2023, 08:15
Forum: Suggestions on Documentation Improvements
Topic: AutoHotkey Script Showcase v2 links to AutoHotkey v1 Scripts and Functions Forum Topic is solved
Replies: 4
Views: 1536

Re: AutoHotkey Script Showcase v2 links to AutoHotkey v1 Scripts and Functions Forum Topic is solved

The following is already written at the top of the page:
This showcase lists some scripts created by different authors which show what AutoHotkey might be capable of. For more ready-to-run scripts and functions, see AutoHotkey v2 Scripts and Functions Forum.
by Ragnar
24 Jul 2023, 16:56
Forum: Suggestions on Documentation Improvements
Topic: A_IsCompiled Topic is solved
Replies: 1
Views: 1051

Re: A_IsCompiled Topic is solved

Thanks for reporting. I've fixed it.
by Ragnar
24 Jul 2023, 07:33
Forum: Bug Reports
Topic: [v2.0.4] LV.Add/Insert/Modify: Critical error when passing minimum parameters Topic is solved
Replies: 3
Views: 803

Re: [v2.0.4] LV.Add/Insert/Modify: Critical error when passing minimum parameters Topic is solved

Well, at least the issue was found :)

For clarity, I have changed the thread title from "Critical error if LV.Add/Insert/Modify param list ends with a comma" to "LV.Add/Insert/Modify: Critical error when passing minimum parameters".
by Ragnar
24 Jul 2023, 04:49
Forum: Ask for Help (v2)
Topic: [2.0.4] Bug related to StrPut() and Buffer objects Topic is solved
Replies: 9
Views: 864

Re: [2.0.4] Bug related to StrPut() and Buffer objects Topic is solved

With the second example, it should work. You also need to make sure the buffer has enough capacity. UTF-16 needs StrLen*2. In the second example it works with a value of 64 because the string's length is less than that (10*2), but in the first example it must be at least 100 (50*2). I chose UTF-16 b...
by Ragnar
23 Jul 2023, 17:29
Forum: Ask for Help (v2)
Topic: [2.0.4] Bug related to StrPut() and Buffer objects Topic is solved
Replies: 9
Views: 864

Re: [2.0.4] Bug related to StrPut() and Buffer objects Topic is solved

The StrPut/StrGet docs were not 100% correct. I have revised them slightly, maybe it is a bit more understandable now.
by Ragnar
23 Jul 2023, 14:24
Forum: Bug Reports
Topic: [v2.0.4] LV.Add/Insert/Modify: Critical error when passing minimum parameters Topic is solved
Replies: 3
Views: 803

[v2.0.4] LV.Add/Insert/Modify: Critical error when passing minimum parameters Topic is solved

The following code: #Requires AutoHotkey v2 G := Gui() LV := G.Add("ListView", "r20 w700", ["a","b"]) LV.Insert(1,) ; LV.Insert(1, unset) ; this works G.Show() causes the following error: Critical Error: Invalid memory read/write. 002: G := Gui() 003: LV := G.Add("ListView", "r20 w700", ["a","b"]) ▶...
by Ragnar
23 Jul 2023, 07:44
Forum: Ask for Help (v2)
Topic: [2.0.4] Bug related to StrPut() and Buffer objects Topic is solved
Replies: 9
Views: 864

Re: [2.0.4] Bug related to StrPut() and Buffer objects Topic is solved

If the 3-parameter mode of StrPut is used, the third parameter must be Encoding.

You can use one of the following:

Code: Select all

StrPut(Test, DevName, "UTF-16") ; 3 parameters
StrPut(Test, DevName, StrLen(Test), "UTF-16") ; 4 parameters
by Ragnar
09 Jul 2023, 02:43
Forum: Ich brauche Hilfe
Topic: Deutsche Hilfe für AHK v2 und v1
Replies: 330
Views: 176357

Re: Deutsche Hilfe für AHK v2 und v1

v2-Dokumentation an v2.0.4 angepasst.

Mehr Details auf GitHub
by Ragnar
08 Jul 2023, 12:12
Forum: Ich brauche Hilfe
Topic: Deutsche Hilfe für AHK v2 und v1
Replies: 330
Views: 176357

Re: Deutsche Hilfe für AHK v2 und v1

v1-Dokumentation an v1.1.37.01 angepasst.

Mehr Details auf GitHub
by Ragnar
02 Jul 2023, 15:48
Forum: Ich brauche Hilfe
Topic: Deutsche Hilfe für AHK v2 und v1
Replies: 330
Views: 176357

Re: Deutsche Hilfe für AHK v2 und v1

v1-Dokumentation an v1.1.37.00 angepasst.

Mehr Details auf GitHub
by Ragnar
27 Jun 2023, 14:16
Forum: Ich brauche Hilfe
Topic: Deutsche Hilfe für AHK v2 und v1
Replies: 330
Views: 176357

Re: Deutsche Hilfe für AHK v2 und v1

v2-Dokumentation an v2.0.3 angepasst.

Mehr Details auf GitHub
by Ragnar
20 Jun 2023, 09:15
Forum: Suggestions on Documentation Improvements
Topic: WinTitle "both" Topic is solved
Replies: 1
Views: 1060

Re: WinTitle "both" Topic is solved

Thanks for reporting. I've changed it.
by Ragnar
18 Jun 2023, 06:28
Forum: Suggestions on Documentation Improvements
Topic: [v2] Specify default value for WinSetAlwaysOnTop Topic is solved
Replies: 8
Views: 1727

Re: [v2] Specify default value for WinSetAlwaysOnTop Topic is solved

I agree with @mikeyww, although unlike Pause, Suspend toggles without its parameter.
by Ragnar
27 May 2023, 01:44
Forum: Suggestions on Documentation Improvements
Topic: Joystick documentation (terminology, Xbox controller limitations, XInput, example scripts) Topic is solved
Replies: 13
Views: 4154

Re: Joystick documentation (terminology, Xbox controller limitations, XInput, example scripts) Topic is solved

Thanks for reviewing and testing. I have fixed the links.

I did not add a GUI for ControllerMouse.ahk on purpose. Since the limitation does not apply to other controllers, a GUI would ruin the idea of running the script in the background. In this case, the limitation notes are sufficient.
by Ragnar
25 May 2023, 01:25
Forum: Suggestions on Documentation Improvements
Topic: Joystick documentation (terminology, Xbox controller limitations, XInput, example scripts) Topic is solved
Replies: 13
Views: 4154

Re: Joystick documentation (terminology, Xbox controller limitations, XInput, example scripts) Topic is solved

Give me more time to also verify this behaviour on another PC, to rule out that it isn't specific to this PC in some way. I'll try to get that done tomorrow. Okay, I'll wait. Have you already tried to run the script as administrator? Sometimes this helps, especially with user input. See https://www...
by Ragnar
24 May 2023, 06:57
Forum: Suggestions on Documentation Improvements
Topic: Joystick documentation (terminology, Xbox controller limitations, XInput, example scripts) Topic is solved
Replies: 13
Views: 4154

Re: Joystick documentation (terminology, Xbox controller limitations, XInput, example scripts) Topic is solved

Thanks for your detailed review. I have implemented your suggestions. Please review again. Renaming RemapJoystick.htm, JoystickMouse.ahk and JoystickTest.ahk requires extra treatment (redirection) which needs to be done by someone with server permissions. I will ask joedf. I slightly enhanced your i...
by Ragnar
17 May 2023, 12:04
Forum: Suggestions on Documentation Improvements
Topic: documentation syntax conventions
Replies: 1
Views: 775

Re: documentation syntax conventions

Issue #1: Where is your suggestion for improving the documentation? I can only vaguely guess that you don't want to see SetFormat as deprecated. However, SetFormat is deprecated, because 1) selective formatting is better in most cases, as it is more traceable and less error-prone, and 2) it was remo...

Go to advanced search