Timeline



Sep 2, 2013:

6:04 PM Ticket #2439 (SplashImageOn - Bug - Parameters description) closed by guinness
Fixed: Fixed by revision [8924] in version: 3.3.9.20
6:01 PM Ticket #2433 (Identify monospaced fonts in Appendix) updated by guinness
Mat has sent a PM to Spiff59 regarding this ticket. Just awaiting for a response.
5:42 PM Ticket #2433 (Identify monospaced fonts in Appendix) updated by Melba23
You tell me which fonts are mono-spaced and I will change the table. Seems a fair division of labour to me. M23
5:36 PM Ticket #2368 (Inconsistent GUICreate results) updated by Matt Diesel
Full code that works for all the styles I've tested can be found here: http://www.autoitscript.com/forum/topic/154224-winsetclientpos/ Don't think this will be changed in the AutoIt core as a lot of existing scripts probably rely on their windows being the same size.
9:13 AM Ticket #2437 (IniWriteSection does not sufficiently control the "data" parameter.) updated by helloyou_tos_jg@…
Thank for this fast answer. It's not a problem to check to format (for me). Maybe you can add a remark in the helpfile about this. Good luck
12:01 AM Ticket #2439 (SplashImageOn - Bug - Parameters description) updated by mlipok
sorry. "width" is cited but in incorrect column
12:00 AM Ticket #2438 (GuiSetFont and GuiCtrlSetFont - font list appendix) updated by TicketCleanup
Version changed
Automatic ticket cleanup.

Sep 1, 2013:

11:59 PM Ticket #2439 (SplashImageOn - Bug - Parameters description) created by mlipok
in SplashImageOn there is a bug in Parameters description Parameter …
11:53 PM Ticket #2418 (Where to add a description about file with constants definition. ...) updated by mlipok
On the other hand, for example, MsgBox () shows an example of display the information concerning constants in the remarks. in this case, this option is much better because of the amount of information.
11:25 PM Ticket #2438 (GuiSetFont and GuiCtrlSetFont - font list appendix) created by mlipok
in GuiSetFont and GuiCtrlSetFont please add a link to the Appendix …
11:10 PM Ticket #2418 (Where to add a description about file with constants definition. ...) updated by anonymous
as an example, please look for GUISetFont there is used both as GUIConstantsEx.au3 FontConstants.au3, wherein FontConstants.au3 is used twice. All these files are listed in section Parmeters I think the solution is clear. I would suggest possibly before and after "Constants are defined in ..." add an extra blank line. To stand out this information.
9:31 PM Ticket #2422 (_Crypt_EncryptData) closed by guinness
Fixed
9:31 PM Ticket #2422 (_Crypt_EncryptData) updated by guinness
I somehow fixed it (I'm tweaking the build scripts) but it was unintentional.
9:58 AM Ticket #2405 (Possible issue with FileGetVersion.) closed by Jon
Fixed: Fixed by revision [8908] in version: 3.3.9.20
9:53 AM Ticket #2405 (Possible issue with FileGetVersion.) updated by Jon
The docs for FileGetVersion are wrong. A "CompiledScript" property is no longer there. I'll remove it. The way to add a custom version number is the pragma directive. And to get the version of AutoIt used you use the @AutoItVersion macro. See here: […]

Aug 31, 2013:

9:37 AM Ticket #2414 (FileGetPos - Return Value - not complete list of @error conditions) closed by guinness
No Bug

Aug 30, 2013:

4:52 PM Ticket #2414 (FileGetPos - Return Value - not complete list of @error conditions) updated by anonymous
Thank you for the clarification. I reread Documentation, context became clear. please close this ticket.
1:31 PM Ticket #2368 (Inconsistent GUICreate results) updated by Matt Diesel
The correct solution is using the AdjustWindowRectEx function. This wrapper around GUICreate should always create a window with the correct client size. […] AdjustWindowRectEx has a note about not being able to specify the WS_OVERLAPPED style. I'll have to test what that actually means.
12:28 PM Ticket #2414 (FileGetPos - Return Value - not complete list of @error conditions) updated by Matt Diesel
Usually when the docs say that, they mean that @error is set to something non-zero. There are no specific error codes. In order to check errors you should just use: […] This is pretty standard wording in the helpfile.
12:24 PM Ticket #2432 ($tagREBARBANDINFO in StructureConstants.au3) closed by Matt Diesel
Fixed: Fixed by revision [8884] in version: 3.3.9.20
12:03 PM Ticket #2437 (IniWriteSection does not sufficiently control the "data" parameter.) updated by Matt Diesel
No issue here in the example, as an ini file will still work when multiple keys have the same name (the first defined value will be returned by IniRead, so MyValue1). If you want unique keys then this is up to the programmer to implement. However, absolutely no checking is done on the string format at all, so completely invalid strings can still be written. That is more of an issue. I still believe it is up to programmer to make sure the data they are writing is correct though.
11:42 AM Ticket #2385 (@include) updated by Matt Diesel
Basically, the op is looking for something similar to pythons if __name__ == __main__ which is used fairly often in python modules. This allows a module to be a program and a library in the same file. So in the op's example, running the include file directly would run some tests, or examples or something, whereas running another file that included it would do nothing. Mlipok, that's not what the op was looking for, and relies on runtime includes in addition to this. It's somewhat unnecessary as well when we already have #include-once. I think without a lot of the other reflection/runtime features other languages have this feature would not be particularly useful.
11:31 AM Ticket #2436 (AutoIt Command Line Interpreter) updated by Matt Diesel
For completeness, the original forum topic can be found here: http://www.autoitscript.com/forum/topic/154089-autoit-useconsole/ I think you'll find that almost all programs in AutoIt are GUI based. When you say it's difficult to create a proper GUI application that's event driven then I think you are being very unfair, and the only language I have ever used that is easier to create and use GUIs in is C#, and even then the only reason it beats AutoIt is because of visual studio, the language itself doesn't make GUIs any easier. Console programs are very rarely used, and the lack of a proper console library shows that. There has been some interest in it, but in two years I've had at most 10 people show a genuine interest in my console.au3. For now, I would have though MHz solution would be good enough. This feature does not have to be added to the AutoIt interpreter either, so if you can come up with a solution (possibly using what MHz has already) that is satisfactory, then an MVP like myself could add it to the installer.

Aug 29, 2013:

6:01 PM Ticket #2435 (Different behaviour between "=" and "==") closed by Melba23
No Bug: No bug - see 2434
6:00 PM Ticket #2434 (Different behaviour between "=" and "==") closed by Melba23
No Bug
5:59 PM Ticket #2434 (Different behaviour between "=" and "==") updated by Melba23
There is no bug. Using the == operator converts both sides to strings and "test" is obviously not the same as "0". However, the = operator does not do this - both sides are treated as numbers and Number("test") = 0. So 0 = 0 is true. M23
3:29 PM Ticket #2437 (IniWriteSection does not sufficiently control the "data" parameter.) created by helloyou_tos_jg@…
For this code : […] the return should be 0 and @error = 1 because …
3:00 AM Ticket #2436 (AutoIt Command Line Interpreter) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
2:29 AM Ticket #2436 (AutoIt Command Line Interpreter) created by anonymous
AutoIt3.exe is a GUI application so a console isn't allocated for it …
1:25 AM Ticket #2385 (@include) updated by Beege
Im confused on the implementation. From the example posted and assuming that would be an include, if the preprocessor replaces @include with true you would end up with this correct? […]

Aug 28, 2013:

7:24 AM Ticket #2434 (Different behaviour between "=" and "==") updated by anonymous
Replying to anonymous: Sorry, I made a mistake: […]
7:16 AM Ticket #2435 (Different behaviour between "=" and "==") created by binhnx89@…
It's different result when use "=" or "==" to compare string value …
7:15 AM Ticket #2434 (Different behaviour between "=" and "==") created by anonymous
It's different result when use "=" or "==" to compare string value …

Aug 27, 2013:

8:19 PM Ticket #2385 (@include) updated by BrewManNH
I still don't understand the point of it. I'd declare a variable in the main script and check to see if it's declared in the UDF, if I were ever to have the need to do something like this myself. But, I suppose that might be too difficult for some.
5:05 PM Ticket #2433 (Identify monospaced fonts in Appendix) created by Spiff59
It would be useful to identify which fonts are monospaced, such as …
11:16 AM Ticket #2385 (@include) updated by James
@BrewManNH, I guess it would mean that one file can act independently if it's not as a UDF or only provide a subset of functionality if it was.

Aug 26, 2013:

7:35 PM Ticket #2385 (@include) updated by BrewManNH
I'm at a loss trying to figure out what the point of this is myself. What exactly would this achieve, and what benefit would it have to anyone?
7:24 PM Ticket #2422 (_Crypt_EncryptData) updated by BrewManNH
The example script is duplicated, but the first one doesn't open a second script that I can see. BTW, the message boxes should have some kind of title explaining that the first one is the encrypted data, and the second one saying it's the decrypted data.
3:54 PM Ticket #2432 ($tagREBARBANDINFO in StructureConstants.au3) created by Starg
GuiReBar UDF doesn't work correctly on Windows XP due to the wrong …
2:03 PM Ticket #2428 (TrayCreateMenu - syntax - default values) closed by FireFox
Completed: Added by revision [8789] in version: 3.3.9.20
2:01 PM Ticket #2428 (TrayCreateMenu - syntax - default values) updated by FireFox
Replying to mlipok: > Do changes in the description of the syntax, introduced in the documentation will have an impact on, the text displayed in Scite4AutoIt I mean calltips guide. > The descriptions are updated for each autoit release (like the documentation if changed), it's not related to Scite4AutoIt.
11:55 AM Ticket #2428 (TrayCreateMenu - syntax - default values) updated by mlipok
sorry I mean Are these two examples produce the same result? TrayCreateMenu('Text', -1, 0) TrayCreateMenu('Text')
11:44 AM Ticket #2428 (TrayCreateMenu - syntax - default values) updated by mlipok
Example is better than a thousand words So I ask you: why syntax is not described in this way? […] Are these two examples produce the same result? TrayCreateMenu('Text', -1, 1) TrayCreateMenu('Text') This is important. but basically I have a question related to the problem, but this time to Jos Do changes in the description of the syntax, introduced in the documentation will have an impact on, the text displayed in Scite4AutoIt I mean calltips guide.
11:23 AM Ticket #2426 (TrayGetMsg and TraySetState - Magic Numbers) updated by mlipok
Thanks I need to verify my own observations.
11:23 AM Ticket #2426 (TrayGetMsg and TraySetState - Magic Numbers) updated by mlipok
Thanks I need to verify my own observations.
10:23 AM Ticket #2428 (TrayCreateMenu - syntax - default values) updated by FireFox
Replying to mlipok: Can you be more specific? I see descriptive parameters: menuID [optional] If defined, allows you to create a submenu in the referenced menu. If equal -1 it refers to first level menu. menuentry [optional] Allows you to define the entry number to be created. The entries are numbered starting at 0.
10:21 AM Ticket #2430 (WinWait , WinWaitActive, WinWaitClose, WinWaitNotActive) closed by FireFox
Completed: Changed by revision [8786] in version: 3.3.9.20
10:14 AM Ticket #2431 (Win.... ("title" [, "text" - syntax and description) closed by FireFox
Completed: Added by revision [8785] in version: 3.3.9.20
9:59 AM Ticket #2426 (TrayGetMsg and TraySetState - Magic Numbers) updated by FireFox
Are you talking about TraySetState or TrayItemSetState? It's not the same thing at all. I suggest those constants for the TraySetState function: $TRAYICONSTATE_SHOW = 1 $TRAYICONSTATE_HIDE = 2 $TRAYICONSTATE_FLASH = 4 $TRAYICONSTATE_STOPFLASH = 8
7:59 AM Ticket #2426 (TrayGetMsg and TraySetState - Magic Numbers) updated by mlipok
oh.. You righte not TrayItemGetState() but in Return Value there is a reference: "Returns the state. See TrayItemSetState table for values." please add the same to the TrayGetMsg Because in TrayItemSetState in Remarks there is a quite nice "State table"
7:18 AM Ticket #2429 (WinWait , WinWaitActive, WinWaitClose, WinWaitNotActive) closed by guinness
Duplicate
7:16 AM Ticket #2426 (TrayGetMsg and TraySetState - Magic Numbers) updated by guinness
TrayGetMsg() & GUIGetMsg() should resemble each other, not TraySetState(). I will leave open and fix the table structure. No need to respond to this ticket for now.
7:10 AM Ticket #2393 (Macro Reference - System Info - Question ? Bug ?) updated by guinness
Resolution, Milestone changed
Fixed by revision [8783] in version: 3.3.9.20
6:00 AM Ticket #2431 (Win.... ("title" [, "text" - syntax and description) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
5:00 AM Ticket #2430 (WinWait , WinWaitActive, WinWaitClose, WinWaitNotActive) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
4:00 AM Ticket #2429 (WinWait , WinWaitActive, WinWaitClose, WinWaitNotActive) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
3:00 AM Ticket #2428 (TrayCreateMenu - syntax - default values) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
2:02 AM Ticket #2430 (WinWait , WinWaitActive, WinWaitClose, WinWaitNotActive) updated by mlipok
sorry created two times the same Track Ticket
2:00 AM Ticket #2427 (ControlTreeView - option2 ??) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
1:39 AM Ticket #2431 (Win.... ("title" [, "text" - syntax and description) created by mlipok
Almost all such functions WinSet Winget WinWait WinMove syntax is …
1:15 AM Ticket #2430 (WinWait , WinWaitActive, WinWaitClose, WinWaitNotActive) created by mlipok
All these functions have different records in remarks. "None" "None" …
1:15 AM Ticket #2429 (WinWait , WinWaitActive, WinWaitClose, WinWaitNotActive) created by mlipok
All these functions have different records in remarks. "None" "None" …
1:03 AM Ticket #2428 (TrayCreateMenu - syntax - default values) created by mlipok
in TrayCreateMenu in syntax there is: […] Is there are default …
1:00 AM Ticket #2426 (TrayGetMsg and TraySetState - Magic Numbers) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
12:58 AM Ticket #2427 (ControlTreeView - option2 ??) created by mlipok
in ControlTreeView Syntax and parameters talk about option2 […] …
12:34 AM Ticket #2426 (TrayGetMsg and TraySetState - Magic Numbers) updated by mlipok
please if possible make the two parts of the documentation.
12:33 AM Ticket #2426 (TrayGetMsg and TraySetState - Magic Numbers) created by mlipok
TrayGetMsg - There is no Magic Number only constants. unlike the …

Aug 25, 2013:

8:02 PM Ticket #2425 (A few more minor helpfile annoyances.) closed by guinness
Fixed: Fixed by revision [8779] in version: 3.3.9.20
5:37 PM helpfile.zip attached to Ticket #2425 by Jaber <jaberwocky6669@…>
5:36 PM Ticket #2425 (A few more minor helpfile annoyances.) created by Jaber <jaberwocky6669@…>
Attached is the txt describing the things and a few helpfile txts in …
2:05 PM Ticket #2385 (@include) updated by mlipok
Replying to anonymous: > Replying to mlipok: > > {{{ > > Else > > #include <ie.au3> > > }}} > > Unfortunately does not work, but I think explains the idea. > You cannot use #include in an if clause, that's why it is not working. I know. See my statement in the comment number 5.
2:01 PM Ticket #2424 (Keywords.html is mostly empty.) updated by mlipok
;)
2:01 PM Ticket #2424 (Keywords.html is mostly empty.) updated by mlipok
ha ha ha
11:32 AM Ticket #2423 (VarGetType - example - question) updated by mlipok
ok Thanks
11:09 AM Ticket #2424 (Keywords.html is mostly empty.) closed by guinness
No Bug
11:09 AM Ticket #2424 (Keywords.html is mostly empty.) updated by guinness
mlipok beat you to it already.:)
10:31 AM Ticket #2424 (Keywords.html is mostly empty.) created by Jaber <jaberwocky6669@…>
autoit-docs-v3.3.9.19-src\docs\autoit\english\html\keywords.htm is …
10:17 AM Ticket #2423 (VarGetType - example - question) closed by guinness
Completed: Added by revision [8766] in version: 3.3.9.20
10:17 AM Ticket #2423 (VarGetType - example - question) updated by guinness
VarGetType will return Ptr for both a handle and pointer. But I updated the function anyway.
10:14 AM Ticket #2385 (@include) updated by anonymous
Replying to mlipok: > {{{ > Else > #include <ie.au3> > }}} > > > Unfortunately does not work, but I think explains the idea. You cannot use #include in an if clause, that's why it is not working.
10:00 AM Ticket #2423 (VarGetType - example - question) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
9:36 AM Ticket #2419 (Window Titles and Text (Advanced) - example - bug and links) updated by mlipok
Replying to guinness: > For now there direct links aren't in additional help file sections, only function documentation. I will do a global update in the future of this. ok > I fixed the statement though. Thanks. You're welcome
9:33 AM Ticket #2420 (Tutorial - Regular Expression - links in example) updated by mlipok
ok
9:30 AM Ticket #2423 (VarGetType - example - question) created by mlipok
in VarGetType in Related is list of function Is... there is a 12 …
9:25 AM Ticket #2422 (_Crypt_EncryptData) created by anonymous
twice repeated the first example first example opens another script
9:07 AM Ticket #2393 (Macro Reference - System Info - Question ? Bug ?) updated by guinness
I still don't understand, sorry. Please download the source docs (http://www.autoitscript.com/autoit3/files/beta/autoit/) and update the relevant files in html\macros and send to me via PM. Thank you.
9:02 AM Ticket #2421 (Keyword/Statement Reference - BUG - empty list/table) closed by guinness
Fixed: Fixed by revision [8762] in version: 3.3.9.20
9:01 AM Ticket #2393 (Macro Reference - System Info - Question ? Bug ?) updated by mlipok
Seeing what changes were made to version 3.3.9.19 I think that created some misunderstanding. You change: "Macro Reference" description I think this was wrong When I propose to change Appendix: I mean: "@OSLang values/codes" in "Appendix Reference" there is: […] and here I propose: […] Besides, now changed links no longer results in the APPENDIX. I think now more accurately explained what I meant earlier.
8:56 AM Ticket #2419 (Window Titles and Text (Advanced) - example - bug and links) updated by guinness
For now there direct links aren't in additional help file sections, only function documentation. I will do a global update in the future of this. I fixed the statement though. Thanks.
8:54 AM Ticket #2419 (Window Titles and Text (Advanced) - example - bug and links) closed by guinness
Rejected
8:53 AM Ticket #2420 (Tutorial - Regular Expression - links in example) updated by guinness
Direct links are only in examples for the indicated function.
8:53 AM Ticket #2420 (Tutorial - Regular Expression - links in example) closed by guinness
Rejected
8:51 AM Ticket #2410 (Obj/COM Reference - PROPOSAL) updated by mlipok
Explanation for example: I think that the examples are often used code fragments in programs that are written for all developers, but especially for novices. I think it would be good if the example was quite complementary, as I suggested in this case.
8:41 AM Ticket #2387 (FileOpen - parameters description - Filename of the text file to open.) updated by mlipok
I only confirm in 3.3.9.19 now is fixed thanks
8:30 AM Ticket #2421 (Keyword/Statement Reference - BUG - empty list/table) created by mlipok
in Keyword/Statement Reference "Below is a complete list of the …
8:22 AM Ticket #2420 (Tutorial - Regular Expression - links in example) created by mlipok
The examples are not working links v3.3.9.19
8:07 AM Ticket #2419 (Window Titles and Text (Advanced) - example - bug and links) created by mlipok
BUG: "e.g. List windows matching a classname defined by a …
7:29 AM Ticket #2385 (@include) updated by mlipok
it's not supposed to be running the script, and the only example showing IDEA

Aug 24, 2013:

6:41 PM Ticket #2405 (Possible issue with FileGetVersion.) updated by anonymous
[…]
6:40 PM Milestone 3.3.9.19 completed
6:35 PM Ticket #2385 (@include) updated by anonymous
James is right. I have tried to explain it two times in the past few days, but my posts always vanish. @mlipok I guess we mean the same thing, but your solution is very messy and I don't want to call any functions to achive that.
4:44 PM Ticket #2407 (Window Titles and Text (Advanced) - Example - Proposal) closed by guinness
Completed: Changed by revision [8749] in version: 3.3.9.19
4:40 PM Ticket #2408 (WinList - PROPOSAL (Paramter and Example)) closed by guinness
Completed: Added by revision [8748] in version: 3.3.9.19
4:31 PM Ticket #2406 (_ArraySearch - PROPOSAL and Question) closed by guinness
Fixed: Fixed by revision [8747] in version: 3.3.9.19
4:13 PM Ticket #2405 (Possible issue with FileGetVersion.) updated by anonymous
3.3.9.18
1:47 PM Ticket #2417 (Built help file errors) updated by guinness
No, James meant in the index it said UDFs Constants include files < but it should've been UDFs Constants include files.
1:02 PM Ticket #2417 (Built help file errors) updated by mlipok
In The second point do you mean that a description about include file not always contain these marks <...> ?
1:00 PM Ticket #2418 (Where to add a description about file with constants definition. ...) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
12:38 PM Ticket #2417 (Built help file errors) closed by guinness
Fixed: Fixed by revision [8735] in version: 3.3.9.19
12:38 PM Ticket #2417 (Built help file errors) updated by guinness
The third point isn't an issue either. ce, #ce, cs, #cs, comments-end, #comments-end, comment-start & #comments-start are all present in the help file.
12:28 PM Ticket #2418 (Where to add a description about file with constants definition. ...) created by mlipok
this was discused here: …
12:25 PM Ticket #2417 (Built help file errors) updated by guinness
The first one is correct and not an error. I will fix the rest though. Thanks.
12:14 PM Ticket #2415 (StringStripCR - headline - Return Value - PROPOSAL) closed by guinness
Completed: Added by revision [8731] in version: 3.3.9.19
12:13 PM Ticket #2417 (Built help file errors) created by James
There are some errors with the Beta version of AutoIt: 1. "-" is in …
12:04 PM Ticket #2413 (Ternary operator - Remarks - PROPOSAL) updated by guinness
Owner, Resolution, Milestone changed
Added by revision [8729] in version: 3.3.9.19
12:02 PM Ticket #2411 (Keyword/Statement Reference - PROPOSAL) updated by guinness
Owner changed
Fixed by revision [8728] in version: 3.3.9.19
11:59 AM Ticket #2385 (@include) updated by mlipok
Firstly, it was not my TICKET Second, thought about, and I made an example of what the applicant wanted to achieve, or at least I think that was it. […] Unfortunately does not work, but I think explains the idea.
11:34 AM Ticket #2413 (Ternary operator - Remarks - PROPOSAL) closed by James
Rejected: This is already in the beta and has been in since Revision #7369 which was October 6th.
11:31 AM Ticket #2411 (Keyword/Statement Reference - PROPOSAL) closed by James
Fixed: Fixed by revision [8723] in version: 3.3.9.19
11:22 AM Ticket #2385 (@include) updated by James
@FireFox, from what I gather, this would allow a UDF file to know whether it has been included or not.
11:21 AM Ticket #2405 (Possible issue with FileGetVersion.) updated by James
Are you using the latest betas?
10:52 AM Ticket #2416 (PixelChecksum - Constructor and Parameters - not defined default value ...) closed by FireFox
Completed: Added by revision [8721] in version: 3.3.9.19
3:00 AM Ticket #2415 (StringStripCR - headline - Return Value - PROPOSAL) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
2:00 AM Ticket #2413 (Ternary operator - Remarks - PROPOSAL) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
1:38 AM Ticket #2416 (PixelChecksum - Constructor and Parameters - not defined default value ...) created by mlipok
in PixelCheksum in Constructor and Parameters section there is not …
1:25 AM Ticket #2415 (StringStripCR - headline - Return Value - PROPOSAL) created by mlipok
in StringStripCR in headline "Removes all carriage return values ( …
1:00 AM Ticket #2412 (#include - Question) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
12:53 AM Ticket #2414 (FileGetPos - Return Value - not complete list of @error conditions) created by mlipok
in FileGetPos in section Return Value […] in Remarks […] Can …
12:05 AM Ticket #2413 (Ternary operator - Remarks - PROPOSAL) created by mlipok
in Ternary operator in Remarks I propose, add link: "This Conditional …
12:00 AM Ticket #2411 (Keyword/Statement Reference - PROPOSAL) updated by TicketCleanup
Version changed
Automatic ticket cleanup.

Aug 23, 2013:

11:32 PM Ticket #2387 (FileOpen - parameters description - Filename of the text file to open.) updated by mlipok
in 3.3.9.18 it is still not fixed
11:00 PM Ticket #2410 (Obj/COM Reference - PROPOSAL) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
10:43 PM Ticket #2412 (#include - Question) created by mlipok
in Keyword Reference / #include Why this document contain this …
10:35 PM Ticket #2411 (Keyword/Statement Reference - PROPOSAL) created by mlipok
the table of contents, this section is called "Keyword / Statement …
10:29 PM Ticket #2410 (Obj/COM Reference - PROPOSAL) created by mlipok
in "Language Reference" in "Obj/COM Reference" Please consider adding …
10:09 AM Ticket #2409 (WinSetTrans - AZJIO - PROPOSAL) closed by FireFox
Rejected
5:00 AM Ticket #2407 (Window Titles and Text (Advanced) - Example - Proposal) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
4:00 AM Ticket #2406 (_ArraySearch - PROPOSAL and Question) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
3:00 AM Ticket #2409 (WinSetTrans - AZJIO - PROPOSAL) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
2:15 AM Ticket #2409 (WinSetTrans - AZJIO - PROPOSAL) created by mlipok
In this post: …
2:00 AM Ticket #2408 (WinList - PROPOSAL (Paramter and Example)) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
1:56 AM Ticket #2408 (WinList - PROPOSAL (Paramter and Example)) updated by mlipok
... and of course link to Title special definition.
1:54 AM Ticket #2407 (Window Titles and Text (Advanced) - Example - Proposal) updated by mlipok
I think the better example to use REGEXPTITLE should be this: […]
1:51 AM Ticket #2408 (WinList - PROPOSAL (Paramter and Example)) created by mlipok
in Parameter description now: The title/hWnd/class of the window …
1:34 AM Ticket #2407 (Window Titles and Text (Advanced) - Example - Proposal) created by mlipok
Please add a new example: e.g. List windows matching a title defined …
1:23 AM Ticket #2406 (_ArraySearch - PROPOSAL and Question) created by mlipok
PROPOSAL: in _ArraySearch […] PROPOSAL […] before: …
12:13 AM Ticket #2405 (Possible issue with FileGetVersion.) updated by anonymous
Still get a blank msgbox. The code example I last posted was messed up by me when I formatted it to be posted.

Aug 22, 2013:

6:43 PM Ticket #2405 (Possible issue with FileGetVersion.) updated by guinness
Look at the #pragma example. […]
6:36 PM Ticket #2393 (Macro Reference - System Info - Question ? Bug ?) closed by guinness
Completed: Changed by revision [8690] in version: 3.3.9.19
6:30 PM Ticket #2400 (#pragma - inputboxres - description) closed by guinness
Completed: Added by revision [8689] in version: 3.3.9.19
1:27 AM Ticket #2405 (Possible issue with FileGetVersion.) updated by jaberwacky
Replying to guinness: > By default now AutoIt is compiled as 0.0.0.0 unless you specify the correct #pragma version directive. Ok I did it with the two relevant pragma directives that I could find and still I get a blank msgbox> […]

Aug 21, 2013:

10:28 PM Ticket #2399 (FileOpenDialog - Function constructor - bug ?) updated by mlipok
So still there is some discrepancy, because the parameter description is written clearly:   […] Unless I'm wrong.
10:12 PM Ticket #2392 (Dim / Global / Local / Const - Remarks - PROPOSAL) updated by mlipok
All right. I accept your answer as a binding, although I once had the opportunity to see the usefulness of IsDeclared () in my own scripts, but that was a long time ago. Since then, I changed my style of programming.
10:03 PM Ticket #2393 (Macro Reference - System Info - Question ? Bug ?) updated by mlipok
I ask: Is that correct? You answer "I don't see the issue" - so I think this mean Answer="Yes" If my thoughts are good, then please consider this change: indicated in Appendix I propose that change: from […] on something like this […]
9:46 PM Ticket #2405 (Possible issue with FileGetVersion.) updated by mlipok
Good to know. Please add an appropriate description in "Compile Pragma Directives" off topic: this is not my ticket
8:50 PM Ticket #2392 (Dim / Global / Local / Const - Remarks - PROPOSAL) updated by guinness
IsDeclared should be used in "special cases" only. If you declare the variable using the following declaration keywords, then you know it's declared and thus there's no point in using IsDeclared.
8:48 PM Ticket #2392 (Dim / Global / Local / Const - Remarks - PROPOSAL) closed by guinness
Rejected
8:46 PM Ticket #2405 (Possible issue with FileGetVersion.) updated by guinness
By default now AutoIt is compiled as 0.0.0.0 unless you specify the correct #pragma version directive.
8:43 PM Ticket #2397 (For...To...Step...Next - Remarks - PROPOSAL) closed by guinness
Completed: Added by revision [8677] in version: 3.3.9.19
8:39 PM Ticket #2394 (Macro Reference - AutoIt Related - Description - PROPOSAL) closed by guinness
Completed: Added by revision [8676] in version: 3.3.9.19
8:38 PM Ticket #2398 (_FileWriteLog - Parameters Description - Proposal) closed by guinness
Completed: Added by revision [8675] in version: 3.3.9.19
8:27 PM Ticket #2402 (_FileReadToArray - Parameters description - PROPOSAL) closed by guinness
Completed: Added by revision [8674] in version: 3.3.9.19
8:25 PM Ticket #2401 (StringSplit - Parameters Description - PROPOSAL) closed by guinness
Completed: Added by revision [8673] in version: 3.3.9.19
8:24 PM Ticket #2393 (Macro Reference - System Info - Question ? Bug ?) updated by guinness
Could you explain further please? I don't see the issue.
8:22 PM Ticket #2395 (_Date_Time_GetSystemTimeAdjustment - missed and unwanted Chars) closed by guinness
Fixed: Fixed by revision [8672] in version: 3.3.9.19
8:15 PM Ticket #2404 (Collection of minor helpfile typos.) updated by anonymous
Replying to guinness: > In FileReadToArray containing was incorrectly spelt. Oops. I Thought I fixed that! Oh well. Thanks!
8:15 PM Ticket #2399 (FileOpenDialog - Function constructor - bug ?) closed by guinness
No Bug
8:14 PM Ticket #2399 (FileOpenDialog - Function constructor - bug ?) updated by guinness
It's not documented as default name being "", so it shouldn't be added as an optional parameter in the syntax example.
8:13 PM Ticket #2403 (Non-existant Function in The Heplfile) updated by anonymous
I thought I had added a comment to this earlier. Oh well. I thought it was strange that it was located under Function Reference. It makes it look like a function.
8:12 PM Ticket #2403 (Non-existant Function in The Heplfile) updated by guinness
This is already fixed by pointing to the tutorial as mlipok said.
8:11 PM Ticket #2403 (Non-existant Function in The Heplfile) closed by guinness
No Bug
8:11 PM Ticket #2405 (Possible issue with FileGetVersion.) created by anonymous
FileGetVersion says that this will return the version of the autoit …
8:10 PM Ticket #2404 (Collection of minor helpfile typos.) closed by guinness
Fixed: Fixed by revision [8671] in version: 3.3.9.19
8:10 PM Ticket #2404 (Collection of minor helpfile typos.) updated by guinness
Thanks ever so much. That was very easy! In FileReadToArray containing was incorrectly spelt.
6:31 AM Helpfile Corrections.zip attached to Ticket #2404 by jaberwacky
helpfile corrections
6:30 AM Ticket #2404 (Collection of minor helpfile typos.) created by jaberwacky
I have taken the liberty of correcting the minor typos. See attached. …
5:16 AM Ticket #2403 (Non-existant Function in The Heplfile) updated by mlipok
This is not a function, but a script. Check the index there is a StringRegExpGUI - which is a link to "Tutorial - Regular Expression". In this tutorial on the bottom there is a BUTTON named "Open StringRegExpGUI.au3"
5:00 AM Ticket #2402 (_FileReadToArray - Parameters description - PROPOSAL) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
4:21 AM Ticket #2403 (Non-existant Function in The Heplfile) created by jaberwacky
In the helpfile under String Management there exists a non-existant …
4:00 AM Ticket #2401 (StringSplit - Parameters Description - PROPOSAL) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
3:52 AM Ticket #2402 (_FileReadToArray - Parameters description - PROPOSAL) created by mlipok
in _FileReadToArray in parameters description there is a text: …
3:50 AM Ticket #2401 (StringSplit - Parameters Description - PROPOSAL) created by mlipok
in StringSplit in Parameters Description in parameters description …
3:46 AM Ticket #2392 (Dim / Global / Local / Const - Remarks - PROPOSAL) updated by anonymous
simply: I propose add an appropriate description in the Remarks and of course a link to IsDeclared()
3:41 AM Ticket #2399 (FileOpenDialog - Function constructor - bug ?) updated by mlipok
So it looks like, it should be changed in the documentation.
3:06 AM Ticket #2392 (Dim / Global / Local / Const - Remarks - PROPOSAL) updated by BrewManNH
Your proposal isn't clear. What exactly are you trying to say?
3:00 AM Ticket #2399 (FileOpenDialog - Function constructor - bug ?) updated by BrewManNH
The first example is definitely written wrong, the second one (FileSetTime) is correctly written.
3:00 AM Ticket #2398 (_FileWriteLog - Parameters Description - Proposal) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
2:00 AM Ticket #2397 (For...To...Step...Next - Remarks - PROPOSAL) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
1:00 AM Ticket #2400 (#pragma - inputboxres - description) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
12:52 AM Ticket #2400 (#pragma - inputboxres - description) created by mlipok
Please extend the documentation for a description of the #pragma …
12:35 AM Ticket #2392 (Dim / Global / Local / Const - Remarks - PROPOSAL) updated by AdmiralAlkex
Uhhm maybe because it says everywhere to not set the version field on feature requests and yet he did? Try reading the ticket guidelines next time.
12:20 AM Ticket #2399 (FileOpenDialog - Function constructor - bug ?) created by mlipok
in FileOpenDialog the constructor is described that: […] is this …
12:00 AM Ticket #2396 (WinActivate - Remarks - PROPOSAL) updated by TicketCleanup
Version changed
Automatic ticket cleanup.

Aug 20, 2013:

11:33 PM Ticket #2398 (_FileWriteLog - Parameters Description - Proposal) updated by anonymous
the same for _FileWriteFromArray and propose additional link in Remarks to the same function: "To use other write modes, like append or Unicode formats, open the file with FileOpen() first and pass the file handle instead."
11:31 PM Ticket #2398 (_FileWriteLog - Parameters Description - Proposal) created by mlipok
in _FileWriteLog in Parameters Description there is: […] I …
11:23 PM Ticket #2397 (For...To...Step...Next - Remarks - PROPOSAL) updated by mlipok
the same proposal in For...In...Next
11:21 PM Ticket #2397 (For...To...Step...Next - Remarks - PROPOSAL) created by mlipok
in For...To...Step...Next in Remarks there is a text: The Variable …
11:00 PM Ticket #2394 (Macro Reference - AutoIt Related - Description - PROPOSAL) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
10:30 PM Ticket #2396 (WinActivate - Remarks - PROPOSAL) created by anonymous
in Remarks There is a that description "@extended contains additional …
10:08 PM Ticket #2395 (_Date_Time_GetSystemTimeAdjustment - missed and unwanted Chars) created by anonymous
in _Date_Time_GetSystemTimeAdjustment in ReturnValue: I noticed: …
10:07 PM Ticket #2392 (Dim / Global / Local / Const - Remarks - PROPOSAL) updated by anonymous
btw. Why "Automatic ticket cleanup." delete Version info
10:00 PM Ticket #2392 (Dim / Global / Local / Const - Remarks - PROPOSAL) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
9:49 PM Ticket #2394 (Macro Reference - AutoIt Related - Description - PROPOSAL) created by mlipok
in Macro Reference - AutoIt Related in Column named "Descrption" I …
9:46 PM Ticket #2393 (Macro Reference - System Info - Question ? Bug ?) created by mlipok
@KBLayout Returns code denoting Keyboard Layout. See Appendix for …
9:39 PM Ticket #2392 (Dim / Global / Local / Const - Remarks - PROPOSAL) created by mlipok
in Dim / Global / Local / Const in Remarks: I propse to add …
9:00 PM Ticket #2391 (Select...Case...EndSelect - Remarks - PROPOSAL) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
8:14 PM Ticket #2391 (Select...Case...EndSelect - Remarks - PROPOSAL) updated by guinness
Linking to the operators page will cause confusion that all operators are supported. So I have rejected this ticket. Thanks for requesting though.
8:12 PM Ticket #2391 (Select...Case...EndSelect - Remarks - PROPOSAL) closed by guinness
Rejected
8:10 PM Ticket #2389 (VarGetType - Remarks - Proposal) closed by guinness
Completed: Added by revision [8669] in version: 3.3.9.19
8:08 PM Ticket #2390 (_DateToDayValue - ReturnValue - proposal) closed by guinness
Fixed: Fixed by revision [8668] in version: 3.3.9.19
8:00 PM Ticket #2389 (VarGetType - Remarks - Proposal) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
7:59 PM Ticket #2391 (Select...Case...EndSelect - Remarks - PROPOSAL) created by anonymous
in Select...Case...EndSelect in Remarks Please add link to "Language …
7:35 PM Ticket #2390 (_DateToDayValue - ReturnValue - proposal) created by mlipok
I Return Value there is: Returns the Juliandate (days since noon 4713 …
7:22 PM Ticket #2389 (VarGetType - Remarks - Proposal) created by mlipok
I propose to add to Remarks link to "Language Reference - Datatypes" …
12:14 PM Ticket #2388 (Broken links in History) closed by FireFox
No Bug: Issue already fixed in 3.3.9.18
11:32 AM Ticket #2388 (Broken links in History) created by Starg
Links to UDFs in History (AutoIt3.chm::/html/history_chm.htm) are …
10:50 AM Ticket #2385 (@include) updated by FireFox
I don't understand the purpose of this, can you explain better what are the advantages to add this feature?
10:41 AM Milestone 3.3.9.18 completed
10:33 AM Ticket #2387 (FileOpen - parameters description - Filename of the text file to open.) closed by FireFox
Fixed: Fixed by revision [8656] in version: 3.3.9.18
10:23 AM Ticket #2367 (beta regression on retrieving twice same $oIE.document) closed by Jon
Fixed: Fixed by revision [8655] in version: 3.3.9.18

Aug 19, 2013:

11:00 PM Ticket #2387 (FileOpen - parameters description - Filename of the text file to open.) updated by mlipok
Pleas change parameters description From that Filename of the text file to open. to something like that Filename to open (full path).
10:56 PM Ticket #2387 (FileOpen - parameters description - Filename of the text file to open.) created by mlipok
This function can open many file types, not only TXT. EXAMPLE: …
7:33 PM Ticket #2368 (Inconsistent GUICreate results) updated by FireFox
I don't see why the internal function of GUICreate would contain superfluous code to create a wrong window size. I tried with the CreateWindowEx function, it gives different results with some styles but the client area does not correspond either to the size initially set.
6:51 PM Ticket #2368 (Inconsistent GUICreate results) updated by vlad@…
Keeping the client area constant would be OK as well, but it just doesn't happen in AutoIT (see the BugDemo1.txt file that I've attached originally) - everything changes ... Replying to FireFox: > huh, it's the same with Visual Express Form builder. > > If you change the FormBorderStyle, it resizes the Form in order to keep the same client area which is IMO quite logic. > > And so does autoit.
3:00 PM Ticket #2367 (beta regression on retrieving twice same $oIE.document) updated by TicketCleanup
Milestone changed
Automatic ticket cleanup.
2:52 PM Ticket #2367 (beta regression on retrieving twice same $oIE.document) reopened by Jon
9:19 AM Ticket #2368 (Inconsistent GUICreate results) updated by FireFox
huh, it's the same with Visual Express Form builder. If you change the FormBorderStyle, it resizes the Form in order to keep the same client area which is IMO quite logic. And so does autoit.
7:38 AM Ticket #2386 (Helpfile Issue) closed by guinness
Fixed: Fixed by revision [8653] in version: 3.3.9.18
3:29 AM Ticket #2386 (Helpfile Issue) created by jaberwocky6669
Under the String Management section of the helpfile is a listing for …

Aug 18, 2013:

6:53 PM Ticket #2385 (@include) created by anonymous
A new makro that would be very easy to implement: Before executing or …
12:41 PM Ticket #2358 (FileInstall: accept "" as "source" to include the current script) closed by Jon
Completed: Added by revision [8632] in version: 3.3.9.18
12:21 PM Ticket #2358 (FileInstall: accept "" as "source" to include the current script) updated by Jon
I've written some code that allows aut2exe to handle @ScriptFullPath when used as the first parameter.
12:00 PM Ticket #2375 (Change default return value for SetError and SetExtended) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
11:00 AM Ticket #2381 (StringIsSpace - does not work in all cases) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
10:45 AM Ticket #2375 (Change default return value for SetError and SetExtended) updated by Jon
Type changed
10:44 AM Ticket #2381 (StringIsSpace - does not work in all cases) updated by Jon
Type changed
10:36 AM Ticket #2384 (UDPRecv() and TCPRecv() not setting @error correctly in some instances.) closed by Jon
Fixed: Fixed by revision [8628] in version: 3.3.9.18
10:31 AM Ticket #2384 (UDPRecv() and TCPRecv() not setting @error correctly in some instances.) created by Jon
See: http://www.autoitscript.com/forum/topic/153709-udprecv-bug/
4:41 AM Ticket #2368 (Inconsistent GUICreate results) updated by vlad@…
I have done something quite similar in my project, but this wasn't quite my point... WinMove behaves consistently: you tell it to do a 640x480, 640x480 it is, no matter what style the window is (of course, the size of the "client area" will be affected by the thickness of the borders). GUICreate, on the other hand, creates a window with a mostly random size: you tell it 640x480 and in most cases you get a window that has neither the "outer box" nor the "client area" of 640x480 ... it just happens that for the "default style" the outer box is 640x480. I believe the implementation of GUICreate should offer some "certitude", in the sense that either the outer or the inner dimensions of the created window should be the ones specified by the calling arguments. It's just a matter of consistency ... Of course, this wouldn't change the fact that most programs will have to figure out the other dimensions so the GUI arrangement matches the intended design. Anyhow, in my view this issue would fall somewhere between annoyance and minor bug. But as most of the AutoIT features are quite neat and clean, I thought it made sense letting you guys know about it.

Aug 16, 2013:

10:05 PM Ticket #2381 (StringIsSpace - does not work in all cases) updated by jchd18
I'm late here! It is as Jon says it is.
9:00 PM Ticket #2383 (Allow Aut2exe GUI to accept dropped files) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
8:34 PM Ticket #2383 (Allow Aut2exe GUI to accept dropped files) created by autoit@…
To compile a script into an executable three files are needed. - …
2:37 PM Ticket #2381 (StringIsSpace - does not work in all cases) updated by Jon
The Remarks section says what characters are classed as space. You can use regexp with the \h and \v to match other sorts (\s just matches the same as the StringIsSpace function). More of a feature request really. The horizontal space characters are: U+0009 Horizontal tab U+0020 Space U+00A0 Non-break space U+1680 Ogham space mark U+180E Mongolian vowel separator U+2000 En quad U+2001 Em quad U+2002 En space U+2003 Em space U+2004 Three-per-em space U+2005 Four-per-em space U+2006 Six-per-em space U+2007 Figure space U+2008 Punctuation space U+2009 Thin space U+200A Hair space U+202F Narrow no-break space U+205F Medium mathematical space U+3000 Ideographic space The vertical space characters are: U+000A Linefeed U+000B Vertical tab U+000C Formfeed U+000D Carriage return U+0085 Next line U+2028 Line separator U+2029 Paragraph separator

Aug 15, 2013:

4:48 PM Ticket #2381 (StringIsSpace - does not work in all cases) updated by James
I think this is an issue of AutoIt's internal string handling. jchd would be best to speak to regarding this, he's up to date on how well AutoIt handles characters.
3:13 PM Ticket #2382 (_ATAN2 has gone missing) closed by guinness
No Bug
3:12 PM Ticket #2382 (_ATAN2 has gone missing) updated by guinness
I also didn't document its removal because as FireFox said it was never documented. This is why we say don't use internal or undocumented functions.
3:04 PM Ticket #2382 (_ATAN2 has gone missing) updated by MeJonah@…
Not a problem, I just retrieved it from the old UDF. Thanks.
2:40 PM Ticket #2382 (_ATAN2 has gone missing) updated by FireFox
It was removed because it has never been used since the UDFs were introduced.
2:12 PM Ticket #2382 (_ATAN2 has gone missing) created by MeJonah@…
Somewhere between 3.3.9.13 and 3.3.9.16 _ATAN2 went missing from the …
12:25 PM Ticket #2368 (Inconsistent GUICreate results) updated by FireFox
No, it's not a bug. Depending on the window' style, you will have to add the borders. See below: I changed the window' style of the Test2 because it's simpler (otherwise other metrics are needed that I don't bother to search). […]
11:56 AM Ticket #2381 (StringIsSpace - does not work in all cases) updated by FireFox
http://en.wikipedia.org/wiki/Non-breaking_space Interesting, even the french version of the page is more complete.
11:26 AM Ticket #2381 (StringIsSpace - does not work in all cases) updated by guinness
I would say it's a feature request more than anything.
11:25 AM Ticket #2381 (StringIsSpace - does not work in all cases) updated by guinness
SRE doesn't even class Chr(160) as being a space either. So I don't know if this can be classed as a bug. […]
11:17 AM Test_AU3_3316_StringIsSpace.au3 attached to Ticket #2381 by anonymous
Example code with comments
11:16 AM Ticket #2381 (StringIsSpace - does not work in all cases) created by mlipok
$s = Chr(160) ConsoleWrite('$s =' & $s & '=' & @CRLF) …
10:54 AM Milestone 3.3.9.17 completed

Aug 13, 2013:

1:38 PM Ticket #2336 (Blockinput (1) not for WACOM Pen with Win8) closed by Jon
Rejected
1:37 PM Ticket #2336 (Blockinput (1) not for WACOM Pen with Win8) updated by Jon
This function is just a wrapper from a WinApi call. We won't be adding anything else in this area.
10:45 AM Ticket #2366 (For loop not working as expected) closed by Jon
Fixed: Fixed by revision [8491] in version: 3.3.9.17
9:00 AM WikiStart edited by guinness
Update version info. (diff)

Aug 10, 2013:

10:50 AM Milestone 3.3.9.16 completed
8:52 AM Ticket #2379 (WS_EX_LAYOUTRTL and GUICtrlCreateMenu causes bug) updated by Emiel Wieldraaijer
forgot to mention it .. but this problems did not occur in version 3.3.6.1
8:41 AM Ticket #2379 (WS_EX_LAYOUTRTL and GUICtrlCreateMenu causes bug) updated by Emiel Wieldraaijer
@BrewManNH You are right i do not use GUICtrlCreateTabItem("") .. never used it .. and it's mentioned in the help files .. it solves the problem of the missing button.. Indeed the menu item at the end of the script solves the problem .. but it's still a bug. the code or the help files should change.. Thanks

Aug 9, 2013:

11:29 PM Ticket #2380 (Add _IsDir) updated by guinness
After a lengthy discussion, I went with adding it as an example only.
11:21 PM Ticket #2380 (Add _IsDir) closed by guinness
Completed: Added by revision [8433] in version: 3.3.9.16
2:04 PM Ticket #2380 (Add _IsDir) updated by guinness
I think it would be best suited as a second/third example for FileGetAttrib. But I will ask my peers what they think as well.
2:00 PM Ticket #2380 (Add _IsDir) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
1:16 PM Ticket #2380 (Add _IsDir) created by AZJIO
Often used. […]

Aug 8, 2013:

7:57 PM Ticket #2379 (WS_EX_LAYOUTRTL and GUICtrlCreateMenu causes bug) updated by BrewManNH
If you move the CreateMenu item to the end of the list of things being created, it doesn't cause the problems. Also, you never close the tab item creation by using "GUICtrlCreateTabItem("")" after the last tab item created, which might be causing part of your problem.
7:16 AM Ticket #1024 (GUICtrlSetTip for tabitems sets incorrectly in certain situations) closed by Jon
Fixed: Fixed by revision [8426] in version: 3.3.9.16
7:14 AM Ticket #1024 (GUICtrlSetTip for tabitems sets incorrectly in certain situations) reopened by Jon

Aug 7, 2013:

7:43 PM Example2.png attached to Ticket #2379 by Emiel Wieldraaijer
7:43 PM Example1.png attached to Ticket #2379 by Emiel Wieldraaijer
7:42 PM Ticket #2379 (WS_EX_LAYOUTRTL and GUICtrlCreateMenu causes bug) created by Emiel Wieldraaijer
Hi, I reported this bug 16 months ago (Ticket 2167) but Jon rejected …
11:56 AM Ticket #2378 (BITMAPV4HEADER and BITMAPV5HEADER Structures incorrect) closed by guinness
Fixed: Fixed by revision [8418] in version: 3.3.9.16
7:35 AM Ticket #2370 (StringReplace & StringRegExpReplace Add Offset\The starting position ...) updated by DXRW4E
[…]
7:23 AM Ticket #2370 (StringReplace & StringRegExpReplace Add Offset\The starting position ...) updated by DXRW4E
Yes, I always use the latest Beta, where I noticed that StringRegExpReplace has been improved a lot about the speed in the Case-sensitivity Mod, however have a flag "Offset\The starting position of the search" in StringReplace or in StringRegExpReplace, as in StringInStr and StringMid that working really fast, would be really helpful Ciao.
12:27 AM Ticket #2378 (BITMAPV4HEADER and BITMAPV5HEADER Structures incorrect) created by Ascend4nt@…
In the <WinAPIGdi.au3> header the definitions for BITMAPV4HEADER and …

Aug 6, 2013:

1:55 PM Ticket #2355 (Custom compiler) closed by Jon
Rejected
1:55 PM Ticket #2355 (Custom compiler) reopened by Jon
10:29 AM Ticket #2355 (Custom compiler) closed by James
No Bug
10:18 AM Ticket #2370 (StringReplace & StringRegExpReplace Add Offset\The starting position ...) updated by James
DXRW4E, are you using the latest beta? The regex compiler that AutoIt uses has been updated. Can you give that a go please?
10:06 AM Ticket #2373 (@ScriptDir returns trailing slash) closed by James
Fixed: I've updated this in the documentation. I don't know when it'll be included but it's done.
9:47 AM Ticket #2367 (beta regression on retrieving twice same $oIE.document) updated by J-Paul Mesnage
Still buggy under X64 see this http://www.autoitscript.com/forum/topic/153009-autoit-v33913-beta/?p=1099859 definitly not a regression still old bug
9:33 AM Ticket #2371 (_PathSplit with relative Paths) updated by J-Paul Mesnage
Component changed

Aug 4, 2013:

10:30 PM Milestone 3.3.9.15 completed
2:09 PM Ticket #2376 (Function fails to return a value properly) updated by anonymous
Replying to guinness: This fixed it, thanks.

Aug 3, 2013:

10:03 PM Ticket #2377 (Crypt(Un)ProtectData if Crypt.au3 UDF) closed by guinness
Rejected
10:01 PM Ticket #2376 (Function fails to return a value properly) closed by guinness
Works For Me
9:57 PM Ticket #2377 (Crypt(Un)ProtectData if Crypt.au3 UDF) updated by guinness
Please re-read the feature request guidelines again.
8:00 PM Ticket #2377 (Crypt(Un)ProtectData if Crypt.au3 UDF) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
7:26 PM Ticket #2377 (Crypt(Un)ProtectData if Crypt.au3 UDF) created by matwachich
I think the title is straight forward! Why not implementing …
Note: See TracTimeline for information about the timeline view.