Timeline



Jul 22, 2023:

8:00 PM Ticket #3965 (Please change tickets' default to the latest version) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
7:00 PM Ticket #3964 (Allow EnvGet to support whole strings like _WinAPI_ExpandEnvironmentStrings) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
6:08 PM Ticket #3965 (Please change tickets' default to the latest version) created by lwc
When opening new tickets, the default version is v3.3.14.0 which is …
6:05 PM Ticket #3964 (Allow EnvGet to support whole strings like _WinAPI_ExpandEnvironmentStrings) updated by lwc
Please change to the latest version (currently v3.3.16.1).
6:04 PM Ticket #3964 (Allow EnvGet to support whole strings like _WinAPI_ExpandEnvironmentStrings) created by lwc
While …

Jul 21, 2023:

11:38 AM Ticket #3963 (_WinAPI_OpenEvent function missing in WinAPIProc.au3) updated by J-Paul Mesnage
Hi, Can you explain why the first paraameter can be optional (not described in MSDN) ? can you post an example so I can add it in the doc? Thanks for the help

Jul 19, 2023:

1:14 PM Ticket #3963 (_WinAPI_OpenEvent function missing in WinAPIProc.au3) created by kleiza44@…
Please add _WinAPI_OpenEvent function that allows to check global …

Jul 16, 2023:

10:48 PM Ticket #3962 (Not able to interrupt script with hotkey on latest version v3.3.16.1) created by anonymous
On v3.3.16.1 on a code like this you're unable to interrupt a script …

Jul 13, 2023:

11:46 AM Ticket #2855 (Scoping and declaration modifiers combinations) updated by anonymous
#AutoIt3Wrapper_Run_Au3Check=N _Example() _Example() _Example2() _Example2() Func _Example() Local $hTimer = TimerInit() Local Const $bTest = _Initialize_Variable() Local $fDiff = TimerDiff($hTimer) ConsoleWrite("Time Difference Test1 = " & $fDiff & @CRLF) EndFunc Func _Example2() Local $hTimer = TimerInit() Local Static $bTest1 = _Initialize_Variable() Local Const $bTest2 = $bTest1 Local $fDiff = TimerDiff($hTimer) ConsoleWrite("Time Difference Test2 = " & $fDiff & @CRLF) EndFunc Func _Initialize_Variable() ; do some stuff ; for example read some data from XLS or from CSV or any other type of database Return Sleep(1000) EndFunc
11:31 AM Ticket #2671 (StringSplit - bug : Delimiter case sensitivity problem) updated by anonymous
#include <Array.au3> Local $sData1 = "0AB1Ab2aB3ab4Ab5AB6" Local $aTest1 = StringSplit($sData1, 'ab', 1) _ArrayDisplay($aTest1, '$aTest1') #cs Current AutoIt 3.3.11.3 Results : Row|Col 0 [0]|2 [1]|0AB1Ab2 [2]|3 #CE #CS expected result : Row|Col 0 [0]|2 [1]|0AB1Ab2aB3 [2]|4Ab5AB6 #CE Local $aTest2 = StringSplit($sData1, 'aB', 1) _ArrayDisplay($aTest2, '$aTest2') #CS Current AutoIt 3.3.11.3 Results : Row|Col 0 [0]|2 [1]|0AB1Ab2 [2]|3 #CE #CS expected result : Row|Col 0 [0]|2 [1]|0AB1Ab2 [2]|3ab4Ab5AB6 #CE Local $aTest3 = StringSplit($sData1, 'Ab', 1) _ArrayDisplay($aTest3, '$aTest3') #CS Current AutoIt 3.3.11.3 Results : Row|Col 0 [0]|3 [1]|0 [2]|1 [3]|2aB3ab4 #CE #CS expected result : Row|Col 0 [0]|3 [1]|0AB1 [2]|2aB3ab4 [3]|5AB6 #CE Local $aTest4 = StringSplit($sData1, 'AB', 1) _ArrayDisplay($aTest4, '$aTest4') #CS Current AutoIt 3.3.11.3 Results : Row|Col 0 [0]|3 [1]|0 [2]|1 [3]|2aB3ab4 #CE #CS expected result : Row|Col 0 [0]|3 [1]|0 [2]|1Ab2aB3ab4Ab5 [3]|6 #CE
11:07 AM 113.au3 attached to Ticket #2652 by anonymous
10:13 AM Ticket #1652 (Sleep in TimerFunc) updated by anonymous
#AutoIt3Wrapper_UseX64=Y ;~ #AutoIt3Wrapper_AutoIt3Dir="z:\AutoItPortable\AutoIt_3_3_15_3" ;~ #AutoIt3Wrapper_Aut2exe="z:\AutoItPortable\AutoIt_3_3_15_3\Aut2Exe\Aut2exe.exe" ;~ #AutoIt3Wrapper_AutoIt3="z:\AutoItPortable\AutoIt_3_3_15_3\AutoIt3.exe" #Include <Timers.au3> #include <GUIConstantsEx.au3> Global $BeforeExit = 0 Opt("GUIOnEventMode", 1) Global $hGUI = GUICreate("Form", 200, 100) GUICtrlCreateButton("test",4,4,100,50) GUISetOnEvent($GUI_EVENT_CLOSE, "Exit") GUISetState() _Timer_SetTimer($hGUI, 10, "Timer") While 1 Sleep(10) WEnd Func Timer($hWnd, $Msg, $iIDTimer, $dwTime) #forceref $hWnd, $Msg, $iIDTimer, $dwTime If $BeforeExit = 1 Then ConsoleWrite("Entered here before Exit" & @CRLF) ;Sleep(1) EndFunc Func Exit() _Timer_KillAllTimers($hGUI) $BeforeExit = 1 For $i = 1 to 999999 _Test() Next Exit EndFunc Func _Test() EndFunc

Jul 11, 2023:

7:51 AM Ticket #3961 (HotKeySet and Send extended function keys) updated by J-Paul Mesnage
Owner, Status changed
Thanks fix sent to Jon

Jul 10, 2023:

2:11 PM Ticket #3961 (HotKeySet and Send extended function keys) updated by mLipok
Description changed

Jul 3, 2023:

9:00 PM Ticket #3961 (HotKeySet and Send extended function keys) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
8:06 PM Ticket #3961 (HotKeySet and Send extended function keys) created by Andreik
Since the extended function keys (F13 - F24) are introduced again with …

Jun 23, 2023:

4:23 PM Ticket #3960 (Integer division) closed by J-Paul Mesnage
Completed: Added by revision [12995] in version: 3.3.17.0

Jun 22, 2023:

12:39 PM Ticket #3960 (Integer division) updated by J-Paul Mesnage
Owner, Status changed
12:39 PM Ticket #3960 (Integer division) reopened by J-Paul Mesnage
Note: See TracTimeline for information about the timeline view.