AutoIt v3.3.17.1 Beta
View File
3.3.17.1 (July 08, 2025) (Beta)
AutoIt:
UDFs:
- Fixed: Typo in variable name in Date.au3 introduced in previous beta.
3.3.17.0 (June 29, 2025) (Beta)
AutoIt:
- Changed: Windows 7/Server 2008 is now the minimum OS version required due to dev environment changes.
- Added #3891: DllCall() performance optimisation.
- Added: Standard Windows Fonts List for Win10/Win11.
- Added #3906: GUICtrlCreat
In autoit.de a user said that if the script was closed from the tray, something lingered and did not close the process. This was the example he gave:
#include <Array.au3>
Local $a[1]
_ArrayDisplay($a)
Looked into it and this is the fix I propose:
...
Local $hGUI = GUICreate(...
GUICtrlCreateLabel("@ArrayDisplayInternals@GUIidentifier@", 0, -10, 0, 0)
...
; Switch to GetMessage mode
Local $iOnEventMode = Opt("GUIOnEventMode", 0), $aMsg