Timeline



Jun 8, 2011:

8:27 PM Ticket #1947 (Add "Forward" button in the AutoIt HTML help (.chm file)) created by Stephaen
Could you please add a "Forward" button in the HTML help? It is very …
1:35 PM Ticket #1931 (DoFile) updated by Manadar
Lua uses file based scoping as well. When you define a variable with the local keyword it goes onto the file scope, if you declare it with global keyword it goes onto the global scope and can be accessed anywhere. This allows you to define private/public members with local/global. I've made an example on how we can already do much of what you described: http://www.autoitscript.com/forum/topic/129491-autoit-plugin-architecture/ the only difference is that this uses COM to share variables. In AutoIt, I think that an Export keyword is probably the best approach. Because it's not a bitch in backwards compatibility, which changes to local/global would be. Just remember that the main script also needs to be able to Export functions so that the plugins can use them.

Jun 7, 2011:

5:45 PM Ticket #1565 (Arrays as object properties; memory leak) closed by Jon
Fixed: Fixed by revision [6132] in version: 3.3.7.10
12:32 PM Ticket #1946 (_WordCreate Error?) updated by J-Paul Mesnage
The change occur in 3.3.7.8
9:32 AM Ticket #1946 (_WordCreate Error?) created by Anomalism@…
But in 3.3.6.1 it can work. Code: $oWordApp = _WordCreate(@WorkingDir …
5:13 AM Ticket #1931 (DoFile) updated by Valik
Replying to Manadar: > What sort of complexities were you thinking about, Valik? In the sense of duplicate functions and variable names or AutoIt internal technical difficulties? Duplicate variables would just manifest as subtle bugs unless they were Const. Duplicate functions are a syntax error. I think that AutoIt would need to implement file-based scoping for this situation. You can't silently ignore either the caller or callee duplicate function because the signature may be different. You would need for code that comes from the callee to use the function found inside the callee and code from the caller would need to use the caller code. Now, if functions have file scope then variables should as well. But if that is the case, how does the callee tell the caller what variables/functions it can use that will actually call into the callee? This would likely entail a new Export keyword (Applicable to functions or variables). Or it would require some other functionality like pseudo-object syntax where DoFile() returns a "handle" which can be used thusly: […] Script.au3: […] Or maybe functions to access things in the callee: […] I'm sure there are other issues that are not quite so obvious. Or, it could just be a simple, crude implementation that sucks and doesn't offer anything over /AutoIt3ExecuteScript. /shrug
5:00 AM Ticket #1230 (Changes to the build process.) closed by Valik
Completed

Jun 6, 2011:

6:00 PM Ticket #1945 (UPX is outdated in the latest beta's.) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
4:19 PM Ticket #1945 (UPX is outdated in the latest beta's.) created by guinness
I don't know if this is worthy of a bug report, but the UPX exe that …
3:06 PM Milestone 3.3.7.9 completed
12:46 PM Ticket #1410 (Using Pointer type with COM-object throws error.) closed by Jon
Fixed: Fixed by revision [6124] in version: 3.3.7.9

Jun 5, 2011:

11:31 PM Ticket #1944 (AdlibUnRegister not working trusty) updated by mvg
@dev's Thanks for having me on delayed viewing.
7:45 PM Ticket #1944 (AdlibUnRegister not working trusty) updated by Devol
Replying to mvg: > O yea ... your reporting on 3.3.6.1. If you can, see if the current latest beta 3.3.7.x(you fill in the x) is also giving you the same problem/error. So , the error also appears in beta v3.3.7.8, tested on Win7 Prof. SP1 x64 , WinXP Prof. SP2/3 x86.
3:07 PM Ticket #1944 (AdlibUnRegister not working trusty) updated by mvg
O yea ... your reporting on 3.3.6.1. If you can, see if the current latest beta 3.3.7.x(you fill in the x) is also giving you the same problem/error.
3:02 PM Ticket #1658 (COM / OLE object access causes error code 80020003 - member not found) closed by Jon
Fixed: Fixed by revision [6121] in version: 3.3.7.9
2:59 PM Ticket #1944 (AdlibUnRegister not working trusty) updated by mvg
- Random: General ratio might be helpful here. (1:2, 1:10, etc) - System: Some system data on the PC's you have encountered this problem. (like "Environment(Language:0413 Keyboard:00000409 OS:WIN_XP/Service Pack 3 CPU:X86 OS:X86)"( SciTE4AutoIT3,scriptmode) >PS: I talked to the german forum before opening this ticket. - Link: So it seems ... http://www.autoit.de/index.php?page=Thread&threadID=27479
8:30 AM Ticket #1935 (_IEBodyReadText with IE9 failed) updated by J-Paul Mesnage
Finally the suggestion #1938 of using #RequireAdmin is a workaround. The ticket should be reopen to work witout #RequireAdmin or tell me what I need to change in IE9 configuration
7:59 AM Ticket #1935 (_IEBodyReadText with IE9 failed) updated by J-Paul Mesnage
any clue to understand what is going under my 2 systems …

Jun 4, 2011:

6:56 PM Ticket #1944 (AdlibUnRegister not working trusty) updated by anonymous
Replying to BrewManNH: > It's working for me, every time I hit Stop, it changes the label to Stopped. I even put the sleep at 1 second and still no issues with it. Sorry i had problems with the edit-function , the sleep doesn`t really matter , use 50ms to try , the error really exists(tested with some user in the german forum before) , the problem is that it appears randomly.
6:18 PM Ticket #1944 (AdlibUnRegister not working trusty) updated by BrewManNH
It's working for me, every time I hit Stop, it changes the label to Stopped. I even put the sleep at 1 second and still no issues with it.
5:33 PM Ticket #1944 (AdlibUnRegister not working trusty) created by Devol
Hello, Here an example: […] I tested this script on several pcs …
9:07 AM Ticket #1658 (COM / OLE object access causes error code 80020003 - member not found) updated by Jon

Jun 3, 2011:

12:52 PM Ticket #1931 (DoFile) updated by Manadar
What sort of complexities were you thinking about, Valik? In the sense of duplicate functions and variable names or AutoIt internal technical difficulties?
12:50 PM Ticket #1931 (DoFile) updated by Manadar
A plugin is loaded by the main application and then the plugin can consume services from the main application according to a some specific interface. How would a3x files consume these services? How do you compile an a3x when you call functions that are not yet available? Heavy usage of Call maybe, or maybe we need to rely on COM server or dll callbacks (somehow) which are both not optimal. The ability to use a3x files as dll files is very powerful, but maybe it should be considered separately instead of DoFile vs a3x dll. Modifying scripts source code (by another script) together with DoFile poses no limitations: Full AutoIt reflection libraries are possible.

Jun 2, 2011:

8:39 PM Ticket #1931 (DoFile) updated by Valik
I'm not sure this is the right approach. I think a better approach would be to allow a3x files to have an export table, provide some native functions for reading this export table and provide ways for scripts to call into a3x files and access the exported functions. In other words, a3x files should emulate DLLs. I think there are a number of issues with your suggestion. I assume the intent is that $file can see the global variables of the caller and that the caller can see functions or global variables from $file, otherwise you would just use Run(). I think that this introduces a lot of complexities that would be easier to manage with the previously mentioned idea that a3x files behave more like DLLs.
8:34 PM Ticket #1826 (A request about XML Files) closed by Valik
Rejected: You can access MS XML via UDF's as Zedna linked or directly via the COM object. If you can find a library in DLL or COM format you can use that as well. This does not need to be built in. In the future we may include UDFs that are a wrapper around MS XML. Closing this ticket as rejected.
8:32 PM Ticket #1943 (Build script to manage archived releases.) created by Valik
I need to write a build script that automatically moves older releases …
8:27 PM Ticket #1941 (Generate syntax files for Forum, Wiki) updated by Valik
Component changed
8:26 PM Ticket #1942 (Better support for online documentation.) updated by Valik
Type, Version, Component changed
8:26 PM Ticket #1942 (Better support for online documentation.) created by Valik
Make changes to the generated documentation so that it works online or …
8:24 PM Ticket #1941 (Generate syntax files for Forum, Wiki) created by Valik
The script that generates the Au3Check definitions needs to also …
10:24 AM Ticket #1938 (_IEQuit IE9) closed by Jon
Works For Me
10:23 AM Ticket #1935 (_IEBodyReadText with IE9 failed) closed by Jon
Works For Me
3:07 AM Ticket #1554 (RegExp precompile handling) updated by MrCreatoR <mscreator@…>
Any progress on this issue? After an year... [[Image(...)]]
12:29 AM Milestone 3.3.7.8 completed
12:07 AM Ticket #1908 (ObjName returns empty string for HTMLDocument with IE9) closed by Jon
Fixed: Fixed by revision [6098] in version: 3.3.7.8

Jun 1, 2011:

10:20 PM Ticket #1935 (_IEBodyReadText with IE9 failed) updated by J-Paul Mesnage
Replying to Jpm: I suppose you get a length around 2500. what can i do on my system in fact 2 Win7 32-bit sp1 both return 1
8:55 PM Ticket #1859 (Bug in _WeekNumberISO?) closed by J-Paul Mesnage
Fixed
9:30 AM Ticket #1826 (A request about XML Files) updated by anonymous
'Native xml support' would indeed be nice. When XML will be supported by default then this should be a light and fast implementation. Now I have to change to Saxon for parsing large files to get a reasonable speed.

May 31, 2011:

3:29 PM Ticket #1935 (_IEBodyReadText with IE9 failed) updated by DaleHohm
I cannot reproduce the problem on Win 7 32-bit, AutoIt 3.3.6.1. The Sring length returned is as expected. Can others reproduce? Dale
3:18 PM Ticket #1938 (_IEQuit IE9) updated by DaleHohm
JP, I cannot reproduce this on Win7 32-bit and IE9. The browser opens and closes just as expected without #RequireAdmin Are others able to preproduce? Dale
2:45 PM Ticket #1908 (ObjName returns empty string for HTMLDocument with IE9) updated by DaleHohm
Adding new VBS test code as Jon said the previous code caused trouble on his machine. Please wait until the browser in completely quiescent before dismissing the first message box: set oIE = CreateObject("InternetExplorer.Application") oIE.visible = true oIE.navigate("http://www.autoitscript.com") MsgBox("Click When Browser Document Load Complete") MsgBox(TypeName(oIE.document))
1:54 PM Ticket #1907 (Bug in AdlibRegister) closed by Jon
Duplicate
1:03 PM Milestone 3.3.7.7 completed

May 30, 2011:

10:50 PM Ticket #1837 (_GUICtrlIpAddress_EnableDisable) updated by Matt Diesel <Mat@…>
If we had to add functions like this for every control UDF then we'd be here a long time. That's why there is a generic function (_WinAPI_EnableWindow) and even a native solution in the form of ControlDisable.
10:02 PM Ticket #1633 (Second AdlibRegister function starts at once when first function is to slow) closed by Jon
Fixed: Fixed by revision [6087] in version: 3.3.7.7
9:48 PM Ticket #1586 (DllStructSetData(char, 1, string-with-NUL-character), junk data(?)) closed by Jon
Fixed: Fixed by revision [6086] in version: 3.3.7.7
9:21 PM Ticket #1937 (_ExcelReadSheetToArray doesn`t work) closed by Jon
No Bug: You're definately running the x64 version so it's expected that this won't work. Closing the bug. Start a discussion on the forum on how to get your scripts to run using the x86 version of autoit.
6:44 PM Ticket #1937 (_ExcelReadSheetToArray doesn`t work) updated by Tweaky
@Zedna >"C:\Program Files (x86)\AutoIt3\SciTE\AutoIt3Wrapper\AutoIt3Wrapper.exe" /run /prod /ErrorStdOut /in "E:\test.au3" /autoit3dir "C:\Program Files (x86)\AutoIt3" /UserParams +>19:34:24 Starting AutoIt3Wrapper v.2.0.1.24 Environment(Language:0407 Keyboard:00000407 OS:WIN_7/Service Pack 1 CPU:X64 OS:X64) >Running AU3Check (1.54.19.0) from:C:\Program Files (x86)\AutoIt3 +>19:34:24 AU3Check ended.rc:0 >Running:(3.3.6.1):C:\Program Files (x86)\AutoIt3\autoit3_x64.exe "E:\test.au3" +>19:34:47 AutoIT3.exe ended.rc:0 >Exit code: 0 Time: 24.200 @Jon the same result
5:56 PM Ticket #1746 (Controls not found in moving from 3.3.4.0 to 3.3.6.0) closed by Jon
Fixed: Fixed by revision [6084] in version: 3.3.7.7
5:45 PM Ticket #1938 (_IEQuit IE9) updated by AdmiralAlkex
Not practical, but I quickly tested and it works if the script run as admin […]
4:22 PM Ticket #1917 (InetGet() on WinXP SP3 Not Working AFTER v3.3.0.0) closed by Jon
Works For Me: Actually, just built an XP SP3 machine for debugging this on and it seems to work fine. Closing until someone else reports a similar problem.
10:25 AM Ticket #1937 (_ExcelReadSheetToArray doesn`t work) updated by Jon
Try putting this at the top of your script, if it works then you were running the x64 version which can't talk to 32bit COM objects like Excel: #AutoIt3Wrapper_UseX64=N
3:26 AM Ticket #1940 (GUI*OnEvent default functions) created by anonymous
Could we get a function that lets us set a default function for any …

May 29, 2011:

11:37 PM Ticket #1937 (_ExcelReadSheetToArray doesn`t work) updated by Zedna
Replying to Tweaky: > I don`t know. > I press F5 when I am in SciTE an then the script is running Copy content of output window in Scite (at bottom), there are all needed information.
8:00 PM Ticket #1879 (StringCount()) updated by mvg
In that case, minimal UDF to do the job. (In case someone has the same idea/request) […]
5:24 PM Ticket #1937 (_ExcelReadSheetToArray doesn`t work) updated by Tweaky
I don`t know. I press F5 when I am in SciTE an then the script is running
1:44 PM Milestone 3.3.7.6 completed
12:30 PM Ticket #1939 (Be able to put some text in a Progress control) created by trac-autoit@…
Hi there, This is a little feature request for Progress control …
12:22 PM temp.html attached to Ticket #1938 by J-Paul Mesnage
12:22 PM Ticket #1938 (_IEQuit IE9) created by J-Paul Mesnage
The following script does work with IE9/Win7 the Html is not closed …
11:18 AM Ticket #1937 (_ExcelReadSheetToArray doesn`t work) updated by Jon
Are you running the script with AutoIt3.exe or AutoIt3_x64.exe?
9:34 AM Ticket #1937 (_ExcelReadSheetToArray doesn`t work) updated by Tweaky
Öh, sorry I don`t understand you. I use the script uncompiled.

May 28, 2011:

11:27 PM Ticket #1936 (_ExcelBookClose doesn`t work) closed by Jon
Duplicate
11:27 PM Ticket #1937 (_ExcelReadSheetToArray doesn`t work) updated by Jon
You have to use 32bit autoit to access 32bit COM objects. Are you doing that?
11:20 PM Milestone 3.3.7.5 completed
6:29 PM Ticket #1937 (_ExcelReadSheetToArray doesn`t work) created by Tweaky
I use Win 7 64 bit and Office 2010 32bit. $namen = …
6:27 PM Ticket #1936 (_ExcelBookClose doesn`t work) created by Tweaky
I use Win 7 64bit and Office 2010 32bit _ExcelBookClose doesn`t work. …
6:00 PM Tickets #1573,​1586,​1633,​1652 batch updated by TicketCleanup
Milestone changed
Automatic ticket cleanup.
4:42 PM Ticket #1652 (Sleep in TimerFunc) reopened by Jon
4:41 PM Ticket #1586 (DllStructSetData(char, 1, string-with-NUL-character), junk data(?)) reopened by Jon
4:40 PM Ticket #1633 (Second AdlibRegister function starts at once when first function is to slow) reopened by Jon
4:39 PM Ticket #1573 (TCPConnect TCPTimeout) reopened by Jon
3:27 PM Milestone 3.3.7.4 completed
7:58 AM Ticket #1935 (_IEBodyReadText with IE9 failed) updated by J-Paul Mesnage
Description changed
7:55 AM testgoodfile.htm attached to Ticket #1935 by J-Paul Mesnage
7:55 AM Ticket #1935 (_IEBodyReadText with IE9 failed) created by J-Paul Mesnage
with some .htm it returns a string of 1 length instead of the …

May 27, 2011:

9:33 PM Ticket #1934 (Au3check false error) updated by Jos
Introduced by fix committed rev 5945 to fix #1051. Fix needs to be reviewed.
9:35 AM Milestone 3.3.7.3 completed

May 26, 2011:

5:08 PM Ticket #1934 (Au3check false error) created by Jos
Following code triggers an Error in au3check (v1.54.20.0) on the …
4:38 PM Ticket #1877 (Func _GetIP() can't deal multiple lines outputs) closed by Jon
Duplicate
4:31 PM Ticket #1876 (Func _GetIP() should use InetRead and not InetGet) closed by Jon
Duplicate

May 25, 2011:

11:43 PM Milestone 3.3.7.2 completed
11:43 PM Milestone 3.3.7.1 completed
11:42 PM Milestone 3.3.7.0 completed
9:00 PM Tickets #1479,​1816 batch updated by TicketCleanup
Milestone changed
Automatic ticket cleanup.
7:51 PM Ticket #1816 (_GUICtrlListView_GetItemText not properly work on Windows 7 x 64) closed by Jon
Fixed: Assuming this has been fixed with dllstruct changes in 3.3.7.2
7:50 PM Ticket #1933 (_GetIP is outdated and could possibly fail.) closed by Jon
Fixed: Fixed by revision [6013] in version: 3.3.7.3
7:45 PM Ticket #1479 (ListView WM_NOTIFY Message on x64 Returning Wrong Results) closed by Jon
Fixed
7:34 PM Ticket #1933 (_GetIP is outdated and could possibly fail.) created by guinness
_GetIP() in Inet.au3 UDF is outdated, due to Source Code changes with …
12:00 AM Ticket #1479 (ListView WM_NOTIFY Message on x64 Returning Wrong Results) updated by TicketCleanup
Milestone changed
Automatic ticket cleanup.

May 24, 2011:

9:44 PM Ticket #1816 (_GUICtrlListView_GetItemText not properly work on Windows 7 x 64) updated by Jon
Component changed
9:44 PM Ticket #1816 (_GUICtrlListView_GetItemText not properly work on Windows 7 x 64) updated by Jon
Owner, Status changed
9:01 PM Ticket #1479 (ListView WM_NOTIFY Message on x64 Returning Wrong Results) reopened by Jon
2:24 PM Ticket #1749 (_GUICtrlTreeView_SetItemParam Help File Page Change) closed by Jon
Wont Fix
2:23 PM Ticket #1929 (SetMenuColor() does not work on 64bit OS) closed by Jon
Fixed: Fixed by revision [6003] in version: 3.3.7.2
2:15 PM Ticket #1891 (_ArrayDisplay (......,i$iTranspose,...) wrong description ?) closed by Jon
Fixed: Fixed by revision [6002] in version: 3.3.7.2
1:51 PM Ticket #1932 (Uninstaller, windows-register, App Paths. (+beta)) closed by Jon
Fixed: Fixed by revision [6001] in version: 3.3.7.2
1:32 PM Ticket #1932 (Uninstaller, windows-register, App Paths. (+beta)) updated by Jon
I think I'll change that so that the beta doesn't touch those keys.
1:30 PM Ticket #1895 (Bugs in _GUIScrollBars_Init()) closed by Jon
Fixed: Fixed by revision [6000] in version: 3.3.7.2
1:24 PM Ticket #1895 (Bugs in _GUIScrollBars_Init()) updated by Jon
Owner, Component changed
1:20 PM Ticket #1932 (Uninstaller, windows-register, App Paths. (+beta)) created by mvg
Not sure about this being something that really matters. But just in …
8:41 AM Ticket #1931 (DoFile) created by Manadar
Dynamically execute code inside a file. Where as #include is static at …

May 23, 2011:

9:03 PM Ticket #1920 (Script crashes with error reported in Security.au3 at line 85) closed by Jon
Fixed: Fixed by revision [5996] in version: 3.3.7.2
8:56 PM Ticket #1859 (Bug in _WeekNumberISO?) updated by Jon
Owner, Component changed
8:54 PM Ticket #1759 (Strange listview sort) updated by Jon
Owner, Component changed
8:52 PM Ticket #1834 (FileSelectFolder problem when using Windows RunAs) closed by Jon
Wont Fix
8:49 PM Ticket #1844 (SplashTextOn crops variable when used with opt 32 and @CRLF / @LF) closed by Jon
Fixed: Fixed by revision [5995] in version: 3.3.7.2
6:47 PM Ticket #1804 (FileSelectFolder does not position itself relative to the parent ...) closed by Jon
Wont Fix
6:45 PM Ticket #1816 (_GUICtrlListView_GetItemText not properly work on Windows 7 x 64) updated by Jon
Owner, Component changed
6:45 PM Ticket #1368 (_ClipBoard_GetData($CF_BITMAP) not working on 3.3.2.0) updated by Jon
Component changed
6:44 PM Ticket #1802 (_WinAPI_CallWindowProc() and _WinAPI_DefWindowProc() are not Unicode ...) updated by Jon
Owner, Component changed
6:41 PM Ticket #1797 (Critical bug with WS_CHILD) closed by Jon
Wont Fix: You can't have a child window in another process.
6:40 PM Ticket #1858 (strange behaviour of dialogs used with hwnd) closed by Jon
Duplicate
6:39 PM Ticket #1910 (Please change $TTN_GETDISPINFO to $TTN_GETDISPINFOW) closed by Jon
Fixed: Fixed by revision [5993] in version: 3.3.7.2
6:34 PM Ticket #1804 (FileSelectFolder does not position itself relative to the parent ...) updated by Jon
Checked with Spy++ and the folder selection window has the correct parent. So it must be a Windows API curiosity.
6:21 PM Ticket #1811 (String.au3 file inside help folder?) closed by Jon
Works For Me
6:19 PM Ticket #1714 (controlID is not evaluated completely) closed by Jon
Wont Fix: By design for the moment.
6:18 PM Ticket #1857 (DriveGetFileSystem not returning expected result when no media loaded) closed by Jon
Fixed
6:16 PM Ticket #1760 (#OnAutoItStartRegister, ignores single quoted function names.) closed by Jon
Wont Fix
5:59 PM Ticket #1854 (StringIsFloat returns 1 on non float numbers) closed by Jon
Fixed: Fixed by revision [5992] in version: 3.3.7.2
5:56 PM Ticket #1854 (StringIsFloat returns 1 on non float numbers) updated by Jon
A unicode bug that's been undetected for 4 years. Unreal.
4:03 PM Ticket #1882 (VarGetType(), Related, IsHwnd.) closed by Jon
Wont Fix
4:01 PM Ticket #1911 (_WinAPI_MsgBox) closed by Jon
Wont Fix
4:00 PM Ticket #1917 (InetGet() on WinXP SP3 Not Working AFTER v3.3.0.0) updated by Jon
This repros with ftp:/ sites on my Windows XP SP3 machine as well. http:/ seems to be fine though.
3:34 PM Ticket #1921 (_ArrayUnique) closed by Jon
Wont Fix
3:30 PM Ticket #1860 (DriveStatus Returns Ready with blank value) closed by Jon
Fixed: Fixed by revision [5991] in version: 3.3.7.2
11:28 AM Ticket #1930 (_GUICtrlListView_SimpleSort doesn't sort ItemParam) created by BugFix
With new Beta _GUICtrlListView_SimpleSort sorts checkboxes too, but …
12:00 AM Ticket #1914 (Error Codes for File operations) updated by TicketCleanup
Version changed
Automatic ticket cleanup.

May 22, 2011:

11:57 PM Ticket #1737 (gui enhancements for touch screens) closed by Jon
Rejected
11:57 PM Ticket #1733 (IsEmpty function) closed by Jon
Rejected
11:56 PM Ticket #1765 (Add ability to allow to embed AutoIt interpreter into C++ code) closed by Jon
Rejected
11:56 PM Ticket #1628 (default icon for compiled scripts) closed by Jon
Rejected
11:56 PM Ticket #1627 (compiling x64) closed by Jon
Rejected
11:55 PM Ticket #1590 (restore FileOpen("con", 4) in AutoIt 3.3.6.2) closed by Jon
Rejected
11:54 PM Ticket #1585 (Keys) closed by Jon
Rejected
11:54 PM Ticket #1205 (Dim / ReDim / Static optimization) closed by Jon
Rejected
11:52 PM Ticket #1899 (SendWindow) closed by Jon
Rejected: It's called ControlSend().
11:52 PM Ticket #1875 (Clear Input buffers) closed by Jon
Rejected
11:52 PM Ticket #1894 (gimagex for AIK 3.0) closed by Jon
Rejected: Not sure what AIK 3.0. I've tried it with the Windows 7 SP1 AIK and it seems ok?
11:51 PM Ticket #1874 (Registry functions should return more meanginful values) closed by Jon
Rejected
11:50 PM Ticket #1815 (Conditional Compilation (#if, #ifdef, #ifndef, #else, #elif, #endif, ...) closed by Jon
Rejected
11:49 PM Ticket #1886 (64 or 128-bit numbers) closed by Jon
Rejected: We already support 64bit integers (signed).
11:47 PM Ticket #1879 (StringCount()) closed by Jon
Rejected
11:47 PM Ticket #1795 (long "long path" support) closed by Jon
Rejected
11:44 PM Ticket #1771 (Run*() failure for Elevated Processes with UAC) closed by Jon
Wont Fix
11:43 PM Ticket #1897 (_DateDiff(), Suggestion (minor fix), Returns Double type instead of Int.) closed by Jon
Wont Fix
11:38 PM Ticket #1883 (IsHWnd(), Return Value. (Nitpick: Value = Bool)) closed by Jon
Fixed: Fixed by revision [5985] in version: 3.3.7.0
11:28 PM Ticket #1583 (ShellExecute() verb "properties" does not work as expected) closed by Jon
No Bug: SEE_MASK_INVOKEIDLIST seems to imply that you want to pass an entirely different structure to ShellExecute rather than a simple verb. So it's either a no bug or a feature request I think.
11:18 PM Ticket #1896 (Just a little error to fix in the help file (documentation)) closed by Jon
Wont Fix
11:16 PM Ticket #1914 (Error Codes for File operations) updated by Jon
Type changed
11:14 PM Ticket #1923 (Memory consumption while FileOpen/FileClose) closed by Jon
Fixed: Fixed by revision [5984] in version: 3.3.7.0
11:12 PM Ticket #1923 (Memory consumption while FileOpen/FileClose) updated by Jon
A rookie error from me.
9:05 PM Ticket #1439 (Icons included in script use wrong size) closed by Jon
Wont Fix
9:05 PM Ticket #1552 (DriveSpaceFree reports free space of 0 for CD) closed by Jon
Wont Fix
9:03 PM Ticket #65 (Au3Check gives wrong error with Const ByRef params) closed by Jon
Wont Fix
9:00 PM Ticket #1584 (web - outdated year) updated by TicketCleanup
Milestone changed
Automatic ticket cleanup.
7:48 PM Ticket #1852 (WEBSITE: http://autoitscript.com doesn't load in Firefox or Safari) closed by Jon
Fixed
7:48 PM Ticket #1855 (AutoIt Window Info does not work on 64 bit Windows 7) closed by Jon
Works For Me
7:48 PM Ticket #1843 (Round(), Doc, decimalplaces, return "type") closed by Jon
Wont Fix
7:47 PM Ticket #1872 (Winactivate and Chrome) closed by Jon
Wont Fix
7:46 PM Ticket #1892 (eventlog) closed by Jon
Wont Fix
7:46 PM Ticket #1884 (Strings concatenation) closed by Jon
Wont Fix
7:45 PM Ticket #1878 (Hard crash on VirtualBox.GuestOSTypes) closed by Jon
Wont Fix
7:45 PM Ticket #1898 ($CmdLineRaw, not enforced as constant.) closed by Jon
Wont Fix
7:44 PM Ticket #1856 (On 64-bit Windows 7, Windows Info works only if Freeze is turned off) closed by Jon
Works For Me
7:42 PM Ticket #1905 (Dynamic Code Execution (like Exec in Python)) closed by Jon
Wont Fix
7:42 PM Ticket #1922 (Shell.Explorer.2-Object and cancel Navigation with BeforeNavigate2 fails) closed by Jon
Wont Fix
7:41 PM Ticket #1918 (IniReadSection Incorrect) closed by Jon
Wont Fix
7:40 PM Ticket #1850 (RunAsWait() return value) closed by Jon
No Bug
7:40 PM Ticket #1825 (StringRegExpReplace - returns bad @extended value) closed by Jon
Works For Me
7:40 PM Ticket #1831 (_FileCountLines does not handles null characters) closed by Jon
Wont Fix
7:39 PM Ticket #1807 (Success of some commands relies on last keyboard/mouse action) closed by Jon
Works For Me
7:38 PM Ticket #1821 (_ScreenCapture_CaptureWnd doesn't work for Games in fullscreen) closed by Jon
Wont Fix
7:38 PM Ticket #1845 (Forum bug) closed by Jon
Wont Fix
7:37 PM Ticket #1810 (Crash, StringRegExpReplace, recursion.) closed by Jon
Wont Fix
7:37 PM Ticket #1809 (Made an Error in script -> GUICtrlCreateButton $SS_RIGHT Create CheckBox) closed by Jon
No Bug
7:36 PM Ticket #1796 (DirCopy does not copy readonly directories unless the flag is set to ...) closed by Jon
No Bug
7:35 PM Ticket #1793 (Undefined Windows constants...) closed by Jon
No Bug
7:34 PM Ticket #1772 (InetGet reload from the remote site) closed by Jon
Works For Me
7:32 PM Ticket #1794 (Opt("GuiCloseOnESC", 0) causes WinClose() to be ignored) closed by Jon
No Bug
7:32 PM Ticket #1763 (incorrect sequence during GUICtrlSetGraphic) closed by Jon
Rejected
7:31 PM Ticket #1748 ("Enter" in an Input Box does 2 things) closed by Jon
Wont Fix
7:30 PM Ticket #110 (GUICtrlCreateObj controls do not correctly track focus.) closed by Jon
Rejected
7:29 PM Ticket #1498 (#RequireAdmin causes script to not complete/run when UAC is turned off ...) closed by Jon
Rejected
7:29 PM Ticket #1725 (LALT UP, RALT UP, LCTRL UP, and RCTRL UP do not release properly) closed by Jon
Wont Fix
7:29 PM Ticket #1584 (web - outdated year) closed by Jon
Fixed
7:27 PM Ticket #1699 (Send() in raw is not working in Windows 7 for the game) closed by Jon
Rejected
7:27 PM Ticket #1786 (ControlSend releases Caps Lock) closed by Jon
Rejected
6:06 AM Ticket #1929 (SetMenuColor() does not work on 64bit OS) created by ibon
SetMenuColor() in the example of TrayItemGetHandle function, does not …
1:18 AM Ticket #1923 (Memory consumption while FileOpen/FileClose) updated by Valik
I can confirm this. The following code is sufficient for reproducing the bug. […] Seems there is an issue in FileOpen() that is causing a memory leak.

May 21, 2011:

11:02 AM Ticket #1923 (Memory consumption while FileOpen/FileClose) updated by anonymous
My Environment(Language:Croatian Keyboard:Croatian OS:WIN_7/Service Pack 1 CPU:X64 OS:X64) also tested on Environment(Language:Croatian Keyboard:Croatian OS:WIN_XP/Service Pack 3 CPU:X86 OS:X86) Have you met "prerequisite" ??? Will try to test some more but ... toofat (khrbud@…)

May 19, 2011:

10:19 PM Ticket #1926 (Support for #AutoIt3Wrapper_outfile_x64) updated by lwc
>You need to compile for both every time? Of course not. I just need that: Enabling the "Use X64" checkbox would use #AutoIt3Wrapper_outfile64. Disabling the "Use X64" checkbox would use the regular #AutoIt3Wrapper_outfile. Here's the discussion.
10:07 PM Ticket #1927 (Add a macro for #AutoIt3Wrapper_Res_Fileversion / %fileversion%) updated by lwc
But not for uncompiled scripts.
1:17 PM Ticket #1924 (Hiding one Edit affects the text in another.) updated by MrCreatoR <mscreator@…>
Indeed, strange behaviour.
1:07 PM Ticket #1923 (Memory consumption while FileOpen/FileClose) updated by MrCreatoR <mscreator@…>
Can not confirm, on my system the results are the same (working set is 4.5 mb maximum). Environment(Language:0419 Keyboard:00000409 OS:WIN_XP/Service Pack 3 CPU:X64 OS:X86)
9:01 AM Ticket #1926 (Support for #AutoIt3Wrapper_outfile_x64) updated by Jos
That is a different twist to the original request and is now the second time it came up. I told the other person I would not have any issue looking at that when it would be a function that would be of interest to a bigger group and suggested to start a topic on this in the forums. Still open to have that open discussion on this requirement and the best way to approach this as to Directives and output EXE naming. Jos
12:50 AM Ticket #1926 (Support for #AutoIt3Wrapper_outfile_x64) updated by Valik
Jos, I admit that I don't use AutoIt3Wrapper, but your suggested solution seems arbitrary. My custom wrapper provides a way for me to compile both x86 and x64 files at once. I use that feature of my wrapper in a program I wrote that loads a DLL into Windows Explorer. The 32-bit and 64-bit binaries sit side-by-side and the 32-bit version is launched by default. It detects if Windows Explorer is 64-bit and re-launches the 64-bit binary which loads a 64-bit DLL, otherwise the 32-bit version continues to run and loads a 32-bit DLL. For this program I use the appropriate flags in my wrapper and always produce a 32-bit and 64-bit binary on each compile with only a single directive added to my script. It seems to me that AutoIt3Wrapper should have similar behavior as it is more intuitive than 2 separate scripts just to have different directives.
12:44 AM Ticket #1928 (SoundPlay does not work after FileOpenDialog) closed by Valik
No Bug: Congratulations on not reading the documentation for FileOpenDialog(), not searching the forum, not searching the issue tracker and not the least of all, not writing good good that avoids this "problem" in the first place.

May 18, 2011:

10:55 PM Ticket #1928 (SoundPlay does not work after FileOpenDialog) created by jlmxp@…
This following script reproduces an issue I’ve just come across with …
9:00 PM Tickets #1926,​1927 batch updated by TicketCleanup
Version changed
Automatic ticket cleanup.
8:32 PM Ticket #1926 (Support for #AutoIt3Wrapper_outfile_x64) updated by Jos
What exactly is the pain? You need to compile for both an x86 and an x64 version every time? If so, why not simply create 2 wrapscripts containing the directives for each and then #include the full actual script? Jos
8:29 PM Ticket #1927 (Add a macro for #AutoIt3Wrapper_Res_Fileversion / %fileversion%) updated by Jos
For compiled script its pretty easy as I also did in AutoIt3Wrapper: […] Jos
8:00 PM Ticket #1927 (Add a macro for #AutoIt3Wrapper_Res_Fileversion / %fileversion%) created by lwc
Without it, I have to set both #AutoIt3Wrapper_Res_Fileversion and an …
7:43 PM Ticket #1926 (Support for #AutoIt3Wrapper_outfile_x64) created by lwc
Please allow for both #AutoIt3Wrapper_outfile and …

May 15, 2011:

12:00 PM Ticket #1925 ($WS_EX_LAYOUTRTL missing in documentation) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
11:40 AM Ticket #1925 ($WS_EX_LAYOUTRTL missing in documentation) created by munzyaron@…
hi. Pls add to the documentation "GUI Control Styles" the …
Note: See TracTimeline for information about the timeline view.