Timeline



Sep 16, 2008:

10:49 PM Ticket #584 (Scite4AutoIt3 reports DLL error on start up) created by danuttall@…
I installed the latest version of Scite4AutoIt3 and tried to edit an …
8:09 PM Ticket #583 (Using @MSEC produces an error) created by dormmamu
Using the latest Beta v3.2.13.7 the recently added @MSEC macro …
5:43 PM Ticket #582 (Tab Item on a Tab Control, Tips not showing) updated by Valik
Owner, Status, Version, Type changed
This is not a bug, it's just simply not implemented. I'm going to change this to a Feature Request since I still think it'd be nice to have.
5:28 PM Ticket #581 (DeAssign() ??) closed by Valik
Rejected: Once a variable exists in a scope, there is no way to remove that variable from a scope. You can clear the contents by assigning it an empty string but the variable will still exist. This will not be changed.
2:16 PM Ticket #582 (Tab Item on a Tab Control, Tips not showing) created by atc
I have a Tab control with several tabs on it. My aim is that a tip …
11:32 AM Ticket #568 (_INetSmtpMail(): Two features: 1.) email priority, 2.) possibility to ...) updated by Rudi.
Hello. I just used WireShark to catch what BLAT.EXE is doing when "-priority 1" parameter is set. No clue if this is the whole story: […] I've had a look to INET.AU3, but didn't get all the things it's doing, so I didn't try yet to code it myself :- Regards, Rudi.
11:22 AM Ticket #581 (DeAssign() ??) created by anonymous
need DeAssign() func. […] HOW to destroy variable "test"? […] …

Sep 15, 2008:

6:00 PM Ticket #580 (ControlListView - Get Text under SysListView32) closed by Valik
No Bug: As I explained in the forum post: The list-view data is managed by the program itself (it has LVS_OWNERDATA set). That means data is not stored or accessed in the standard way. There is a second, different way to access the data and the code you are using does not try the alternate way. The control is what's called a "Virtual List-View" and you can find information on MSDN for how to work with it. This is not a bug, closing it as such.
2:00 AM Ticket #580 (ControlListView - Get Text under SysListView32) created by muskie88@…
ControlListView _GUICtrlListView_GetItemTextString …

Sep 14, 2008:

2:00 AM Ticket #579 (OCR) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
1:03 AM Ticket #579 (OCR) closed by Valik
Rejected: This is not something that should be built into AutoIt. A better alternative is accessing an OCR library via DllCall() or the still experimental Plugin architecture.
12:18 AM Ticket #579 (OCR) created by anonymous
Integration of OCR is extremeley desiarable for Automation. Just …

Sep 13, 2008:

10:07 PM Ticket #578 (#570 CLOSED? AutoIt problems handling filenames with two or more ...) updated by anonymous
Replying to Valik: > I just looked at your code and AutoIt's code and it appears to be working as written. Every time you pass the variable around expansion occurs again. In short, because of the way you wrote your code, you caused the $'s to be stripped out. > {{{ > ; This first block demonstrates that the string is stored as shown but is > ; expanded when accessed. > Local $sOriginal = "5cbep$$$$$$$$$$bnk.txt" > On() > ConsoleWrite(State() & $sOriginal & @CRLF) ; Displays 5 > Off() > ConsoleWrite(State() & $sOriginal & @CRLF) ; Displays 10 > > ; Now, turn expansion back on and copy the string over itself. With > ; expansion on, the actual content will contain 5 $'s. > On() > $sOriginal = $sOriginal > > ; Now let's look at the contents again without and with expansion. > Off() > ConsoleWrite(State() & $sOriginal & @CRLF) ; Displays 5 > On() > ConsoleWrite(State() & $sOriginal & @CRLF) ; Displays 3 > > ; As you can see, the assignment on line 12 has shortened the original > ; string from 10 $'s to 5. Let's repeat that step again to further reduce > ; the string. > On() > $sOriginal = $sOriginal > > ; Now let's look at the contents again without and with expansion. > Off() > ConsoleWrite(State() & $sOriginal & @CRLF) ; Displays 3 > On() > ConsoleWrite(State() & $sOriginal & @CRLF) ; Displays 2 > > ; Now, one more time. > On() > $sOriginal = $sOriginal > > ; Now let's look at the contents again without and with expansion. > Off() > ConsoleWrite(State() & $sOriginal & @CRLF) ; Displays 2 > On() > ConsoleWrite(State() & $sOriginal & @CRLF) ; Displays 1 > > ; At this point the contents of $sOriginal contains 2 $'s but as long as > ; the expansion flag is set you will only see one. We have stripped > ; as many matching sets of $ out of the string each time we > ; performed an assignment with the flag enabled. > > ; Helper functions > Func On() > Opt("ExpandVarStrings", True) > EndFunc > > Func Off() > Opt("ExpandVarStrings", False) > EndFunc > > Func State() > Local $bState = Opt("ExpandVarStrings") > If $bState Then > Return "Expand On: " > Else > Return "Expand Off: " > EndIf > EndFunc > }}} > It really does take as little as 3 expansion to go from 10 $'s to 1 $ if ExpandVarStrings is on. In your code, the first expansion is when you pass $Filename[$IX] to StringReplace(). The second expansion occurs when the return value of StringReplace() is assigned to $Filename[$IX]. The third and final expansion occurs when $Filename[$IX] is assigned to $origfilename. > > This is working as designed. This is not a bug. If you do not like this behavior, do not use this feature. It is a poor feature and should have never been added to the language in the first place. It's full of all kinds of pitfalls and leads to some poorly written, sloppy, unmaintainable code that obviously won't always work as intended. But it is not broken in-so-much-as it's working as it was written to work. Hallo again! Thank you for your extensive answer! The starting problem of this was when I was using _FileListToArray to make a list of filenames in a directory and a file named CBEP$$BNK lost one dollar sign if ExpandVarString was ON. I am now going back to the new way of specifying literals and variables and are skipping Opt(ExpandVarString..) function. Thank you once again and I didn't meen in the beginning to be ignorent or some "besserwisser". I hope we can consider this conversation as ended to the best! My Regards again! S-O
7:12 PM Ticket #578 (#570 CLOSED? AutoIt problems handling filenames with two or more ...) updated by Valik
I just looked at your code and AutoIt's code and it appears to be working as written. Every time you pass the variable around expansion occurs again. In short, because of the way you wrote your code, you caused the $'s to be stripped out. […] It really does take as little as 3 expansion to go from 10 $'s to 1 $ if ExpandVarStrings is on. In your code, the first expansion is when you pass $Filename[$IX] to StringReplace(). The second expansion occurs when the return value of StringReplace() is assigned to $Filename[$IX]. The third and final expansion occurs when $Filename[$IX] is assigned to $origfilename. This is working as designed. This is not a bug. If you do not like this behavior, do not use this feature. It is a poor feature and should have never been added to the language in the first place. It's full of all kinds of pitfalls and leads to some poorly written, sloppy, unmaintainable code that obviously won't always work as intended. But it is not broken in-so-much-as it's working as it was written to work.
6:02 PM Ticket #578 (#570 CLOSED? AutoIt problems handling filenames with two or more ...) updated by anonymous
Replying to Valik: > Straight from the documentation for "ExpandVarStrings": > > when in this mode and you want to use a literal $ or @ then double it up: "This is a single dollar $$ sign". > > It has absolutely nothing to do with file names. It has everything to do with the feature you chose to turn on working working exactly as it was designed and documented. The behavior you describe is not a bug. > > As for the false assumptions, all your comments on "compile-time" versus "run-time" are a load of ignorant conjecture. AutoIt is not a true compiled language. Very little is done at compile-time because AutoIt does not have an optimizing compiler. The only things that are done at compile-time are things that can't be done at run-time. > > Changing this to a bug and closing it, again. It is unbelievable! You hav not understood a thing what i am talking about. Run the script an see what happens! Have ypu looked at the script! I am sorry but your social competence is too low for me! BYe
5:16 PM Ticket #578 (#570 CLOSED? AutoIt problems handling filenames with two or more ...) closed by Valik
No Bug: Straight from the documentation for "ExpandVarStrings": > when in this mode and you want to use a literal $ or @ then double it up: "This is a single dollar $$ sign". It has absolutely nothing to do with file names. It has everything to do with the feature you chose to turn on working working exactly as it was designed and documented. The behavior you describe is not a bug. As for the false assumptions, all your comments on "compile-time" versus "run-time" are a load of ignorant conjecture. AutoIt is not a true compiled language. Very little is done at compile-time because AutoIt does not have an optimizing compiler. The only things that are done at compile-time are things that can't be done at run-time. Changing this to a bug and closing it, again.
3:01 PM Ticket #516 (_ChooseFont 64bit Vista) updated by Gary
Need someone to test this on 64bit Vista
3:00 PM Ticket #553 (_ArrayDisplay() has another problem if using literal pipes in the array) closed by Gary
No Bug: Just change the separator character to something not used in the literal string. For example: […]
2:55 PM Ticket #555 (bug in _GUICtrlListView UDF) updated by Gary
Show some code where the old doesn't work. Not seeing any problem with the current code in the include.
2:00 PM Ticket #577 (Would you like to save money?) closed by Gary
No Bug: Moron
12:00 PM Ticket #578 (#570 CLOSED? AutoIt problems handling filenames with two or more ...) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
11:56 AM FilenameTest.au3 attached to Ticket #578 by S-O
11:55 AM Ticket #578 (#570 CLOSED? AutoIt problems handling filenames with two or more ...) created by S-O
#570 CLOSED? AutoIt problems handling filenames with two or more …
9:48 AM Ticket #577 (Would you like to save money?) created by anonymous
We are professional brand shoes,Apparel and Accessories supplier in …
6:47 AM Ticket #570 (AutoIt problems handling filenames with two or more consecutive dollar ...) closed by Valik
No Bug: Replying to sven-olof.gransten2@tele2.se: > It seems that it has to do with the use of Opt("ExpandVarStrings", 1) function. > It seems that AutoIt is not differentiating between literals and variabelnames and > the actual contents of variabelnames. Literals and varaiabelnames is part of the > AutoIt language at compilation time and should be interpreted at compilation time. I have made a simpel script to show what I meen. AutoIt is intepreting the contents of variabels at runtime (looking for $ signs) when it shouldn't. > I am running Windows XP PRO SP3 (English version) and AutoIt 3.2.12.0. > I like AutoIt very much and wan't to be some help if I can! > See attachment for the script FilenameTest.au3. It creates 5 txt files with 2 lines in each. > > Regards > S-O A little more reading of the documentation and a little less making false assumptions about how the language works will go a long way towards remedying your issue which is not a bug.
1:34 AM FilenameTest.au3 attached to Ticket #570 by anonymous
1:33 AM Ticket #570 (AutoIt problems handling filenames with two or more consecutive dollar ...) updated by sven-olof.gransten2@…
It seems that it has to do with the use of Opt("ExpandVarStrings", 1) function. It seems that AutoIt is not differentiating between literals and variabelnames and the actual contents of variabelnames. Literals and varaiabelnames is part of the AutoIt language at compilation time and should be interpreted at compilation time. I have made a simpel script to show what I meen. AutoIt is intepreting the contents of variabels at runtime (looking for $ signs) when it shouldn't. I am running Windows XP PRO SP3 (English version) and AutoIt 3.2.12.0. I like AutoIt very much and wan't to be some help if I can! See attachment for the script FilenameTest.au3. It creates 5 txt files with 2 lines in each. Regards S-O
12:00 AM Ticket #576 (Autoit3 Portable) updated by TicketCleanup
Version changed
Automatic ticket cleanup.

Sep 12, 2008:

10:54 PM Ticket #576 (Autoit3 Portable) closed by Valik
Rejected: AutoIt is portable. It requires no installation or registry keys to run. Search the forum, there's information on how to configure SciTE and AutoIt to run off things like USB drives.
10:26 PM Ticket #576 (Autoit3 Portable) created by Moddy
As far as I know there is no IDE that i can take with me on a portable …
3:53 PM Ticket #575 (@ProgramFilesDir) created by JPPercy
It doesn't work correctly in Windows Vista Portuguese. […] My …

Sep 11, 2008:

6:18 PM Ticket #569 (TCPRecv - SocketToIp() function in Helpfile example has incorrect DllCall()) closed by J-Paul Mesnage
Fixed: Fixed in version: 3.2.13.8
5:06 PM Ticket #572 (Provide WinRar integration) closed by Valik
Rejected: There are at least two ways to achieve what you're asking for without having to modify anything. This doesn't need to be built in.
5:02 PM Ticket #573 (Random ($min, $max) when $min = $max) closed by Valik
No Bug: I don't know why you think a Random() function in another language means anything. The fact that Delphi behaves differently than AutoIt doesn't make AutoIt wrong since the function is working how it's designed and documented.
3:29 PM Ticket #574 (Problem with sending the Windows Key + L) updated by anonymous
Replying to Ainner: > I'm using the Novell client. > > Send("#l") > > This lock the workstation but the "l" key doesn't work anymore unless I press the windows key to unlock it.
2:11 PM Ticket #574 (Problem with sending the Windows Key + L) created by Ainner
I'm using the Novell client. Send("#l") This lock the workstation …
11:29 AM Ticket #573 (Random ($min, $max) when $min = $max) created by anonymous
I tried in Delphi 2007 and Random($min, $max) = $min (or $max) …
11:18 AM Ticket #569 (TCPRecv - SocketToIp() function in Helpfile example has incorrect DllCall()) updated by Gary
Owner, Summary changed
Liked to never found where this was being it wasn't stated where in the help file the function was located. The function is part of the TCPRecv example.
11:08 AM Ticket #571 (Return value documentation is incorrectly copied in ListBox module) closed by Gary
Fixed: Fixed in version: 3.2.13.8
10:00 AM Ticket #572 (Provide WinRar integration) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
9:20 AM Ticket #572 (Provide WinRar integration) created by splintor@…
Since you already "know" how to compile a script to an executable, it …
9:08 AM Ticket #571 (Return value documentation is incorrectly copied in ListBox module) created by splintor@…
In GuiListBox.au3, the Return Value description of the functions …
6:16 AM Ticket #570 (AutoIt problems handling filenames with two or more consecutive dollar ...) updated by J-Paul Mesnage
I don't know where you find FileGetLong, but for FileGetTime("cbep$$bnk.txt") that's OK under my XP/Sp3 on a local file with 3.2.12.1 Can you describe your environment? Please follow bug reporting directives (repro script, Os version, data ...)
6:02 AM Ticket #569 (TCPRecv - SocketToIp() function in Helpfile example has incorrect DllCall()) updated by J-Paul Mesnage
Owner, Status, Summary changed
12:00 AM Ticket #570 (AutoIt problems handling filenames with two or more consecutive dollar ...) updated by TicketCleanup
Severity changed
Automatic ticket cleanup.

Sep 10, 2008:

10:02 PM Ticket #570 (AutoIt problems handling filenames with two or more consecutive dollar ...) created by sven-olof.gransten2@…
Ihave used functions FileGetLong and FileGetTime and both gives error …
7:11 PM Ticket #569 (TCPRecv - SocketToIp() function in Helpfile example has incorrect DllCall()) created by wraithdu
The first DllCall() in this function should be - […] The parameter …

Sep 9, 2008:

8:00 PM Ticket #568 (_INetSmtpMail(): Two features: 1.) email priority, 2.) possibility to ...) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
7:00 PM Ticket #527 (Abend 0xC0000005 at 7C9109F9 in Aut2exe.exe (ntdll.dll)) closed by Valik
Works For Me: I can't reproduce. Closing as works for me.
6:51 PM Ticket #562 (WinWait and similar functions fails if in TITLE parameter there is ...) closed by Valik
Fixed: Fixed in version: 3.2.13.8
6:12 PM Ticket #566 (Error Helpfile Sample-Script, Appendix @OSLang Values) closed by Valik
Fixed: Fixed in version: 3.2.13.8
6:02 PM Ticket #568 (_INetSmtpMail(): Two features: 1.) email priority, 2.) possibility to ...) created by rudi
Hi Develeopers! It would be great to have two additional things for …
5:59 PM Ticket #567 (missing function) closed by Valik
No Bug: Following up further, this is the reason stripping is and will not be a built-in feature. In the case where a function is a callback, you must tell the stripping mechanism not to strip the function because otherwise it will since it doesn't know it's being called. This is not a bug.
5:34 PM Ticket #567 (missing function) updated by Polyphem
Thats not a bug, you told it to do so by setting the parameter #Obfuscator_Parameters=/SO so => striponly
4:14 PM Ticket #567 (missing function) created by grzesiek
Obfuscator does not add _GUICtrlListView_Sort() function to compiled …
2:07 PM Ticket #566 (Error Helpfile Sample-Script, Appendix @OSLang Values) created by Polyphem
Sample not working, should be: MsgBox(0, "Your OS Language:", …
3:05 AM Ticket #384 (More extensive testing of RunAs()) updated by Valik
Replying to anonymous: > A script cant run itself with a different user rights on a domain but a 2nd script can run the 1st one with different rights. First of all, that has nothing to do with this issue. Second, it can, but you have to make sure that the script is in a place that UserB can access it. For example, if you try to run a script off UserA's desktop, it's going to fail to start because UserB does not have access to that directory. You also have to ensure that the working directory is accessible by UserB.
2:26 AM Ticket #384 (More extensive testing of RunAs()) updated by anonymous
A script cant run itself with a different user rights on a domain but a 2nd script can run the 1st one with different rights.

Sep 8, 2008:

9:13 PM Ticket #558 (Documentation Error) closed by Gary
Duplicate: duplicate of #434
4:27 PM Ticket #564 (Suggestion) closed by Valik
Rejected: That is far too much text for the issue tracker. You have about five thousand different issues. You mention applications that are not directly related to AutoIt, things that are on the "do not ask about these" list, things that allow you to create bad code, a lot of things that can be done yourself if you'd just spend some time thinking and learning the language a little better, and things that should not be implemented in AutoIt at all. Closing as rejected.
12:00 PM Ticket #565 (Calculate Membership in group or ranges) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
11:44 AM Ticket #565 (Calculate Membership in group or ranges) created by Dschingis
A function for calculating the membership in a group or range, which …
10:17 AM Ticket #563 (Not really a future request and Not really a bug -> Msgbox Left and ...) updated by Emiel Wieldraaijer
Thanks Valik... Sorry for wasting your time... i will add the spaces myself
10:00 AM Ticket #564 (Suggestion) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
8:40 AM Ticket #564 (Suggestion) created by geld722@…
--------------------Written-----By-----Geld722---------------------- …
2:20 AM Ticket #563 (Not really a future request and Not really a bug -> Msgbox Left and ...) closed by Valik
No Bug: The function is a standard system function. We do not control the appearance.

Sep 7, 2008:

8:16 PM Ticket #563 (Not really a future request and Not really a bug -> Msgbox Left and ...) created by Emiel Wieldraaijer
Hi, I think the right right margin of a messagebox should be …

Sep 6, 2008:

11:02 PM Ticket #536 (ControlGetFocus() prevents double-clicks) updated by MarcoM
As a workaround, you can test for the left click and if it is pressed, wait a little longer than the double-click maximal interval before getting focus information. That will avoid resetting input events and still allow high frequency focus polling. Here is an example of the workaround code: […]
4:29 PM Ticket #557 (InputBox: Left & Top 'Default' keyword not working.) closed by J-Paul Mesnage
No Bug
4:19 PM Ticket #559 (FileCopy does not work when there is a file exist with the same name ...) closed by J-Paul Mesnage
No Bug: It can't work as *.txt is referencing a group of files that cannot be copied in a file Whatever you use the override/creation dir flag.
4:13 PM Ticket #560 (WinWait and similar functions fails if in TITLE parameter there is ...) closed by J-Paul Mesnage
Duplicate
4:13 PM Ticket #561 (WinWait and similar functions fails if in TITLE parameter there is ...) closed by J-Paul Mesnage
Duplicate
2:58 PM WellTestScript.au3 attached to Ticket #562 by blackgilmor@…
Proper AutoIT script
2:58 PM WrongTestScript.au3 attached to Ticket #562 by blackgilmor@…
AutoIT Script with bug
2:57 PM SomeName.zip attached to Ticket #562 by blackgilmor@…
Simple app with two forms to show bug
2:55 PM AutoIt test.zip attached to Ticket #562 by blackgilmor@…
Test case: simple app and two AutoIT scripts, showing reported bud
2:55 PM Ticket #562 (WinWait and similar functions fails if in TITLE parameter there is ...) created by blackgilmor@…
WinWain function, and other similar, fails when in title parameter is …
2:53 PM Ticket #561 (WinWait and similar functions fails if in TITLE parameter there is ...) created by blackgilmor@…
WinWain function, and other similar, fails when in title parameter is …
2:51 PM Ticket #560 (WinWait and similar functions fails if in TITLE parameter there is ...) created by blackgilmor@…
WinWain function, and other similar, fails when in title parameter is …
11:28 AM Ticket #559 (FileCopy does not work when there is a file exist with the same name ...) updated by Xenobiologist
Hi, I guess you are trying to copy more than one file into one destination file and that won't work. Mega
11:17 AM Ticket #557 (InputBox: Left & Top 'Default' keyword not working.) updated by Xenobiologist
Hi Pete, Default is no String it is a keyword. Just use this and the box will be centered. InputBox("test","test","test","*M",Default,Default,Default,Default,10); Centered Mega
6:20 AM Ticket #559 (FileCopy does not work when there is a file exist with the same name ...) created by anonymous
FileCopy does not work when there is a file exist with the same name …

Sep 5, 2008:

8:28 PM Ticket #558 (Documentation Error) created by FrozenTeeth
In the windows help file I found a possible error. Please verify. …
3:26 PM Ticket #557 (InputBox: Left & Top 'Default' keyword not working.) created by PeteW
Hello, According to the v3.2.12.1 Help file, the keyword Default …

Sep 4, 2008:

8:00 PM Ticket #554 (AutoIt3Wrapper not processing "&" in path properly) updated by TicketCleanup
Milestone changed
Automatic ticket cleanup.
7:51 PM Ticket #556 (Change to SciTE4AutoIt3.exe installer.) closed by Jos
Rejected: Don't see how this works as you didn't install upgrade for SciTE4AutoIt3. I do try to keep it as Backwards compatible as possible but do not have the gift to make it forwards compatible. Jos
7:48 PM Ticket #554 (AutoIt3Wrapper not processing "&" in path properly) closed by Jos
Fixed
7:46 PM Ticket #554 (AutoIt3Wrapper not processing "&" in path properly) updated by anonymous
There was an issue with displaying the & in the source file text field in the GUI which will be fixed in the next release of AutoIt3Wrapper_GUI. Jos
6:00 PM Ticket #556 (Change to SciTE4AutoIt3.exe installer.) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
5:43 PM Ticket #536 (ControlGetFocus() prevents double-clicks) closed by Valik
Wont Fix: This can't be fixed. It's a quirk of windows that when getting focus the input state is reset (keyboard state, mouse state, et cetera). You can still double-click, you just now have to do it faster than the polling interval since it's going to reset the mouse input each time. Closing as won't fix because while it is undesirable behavior it can't be fixed since it's a Windows design problem.
4:12 PM Ticket #556 (Change to SciTE4AutoIt3.exe installer.) created by dg0421
I would like to suggest that the SciTE4AutoIt3.exe installer check the …
4:01 PM Ticket #554 (AutoIt3Wrapper not processing "&" in path properly) updated by anonymous
This issue was caused by outdated files. What happened was, I already had installed an AutoIt3 version from last year. A couple of days ago I installed the new SciTE (full version) that included AutoIt3Wrapper. It turns out that the AutoIt3Wrapper was issuing a command line parameter that wasn't compatible to version 3.2.8.1 of Aut2Exe. Specifically the command line parameter being issued by AutoIt3Wrapper was "/Pack" which isn't a valid parameter for version 3.2.8.1 of Aut2Exe. I have now upgraded to version 3.2.12.1 and all is well.
3:20 PM Ticket #555 (bug in _GUICtrlListView UDF) updated by anonymous
I think, some other Functions have to be changed then, too :) _GUICtrlListView_SetItemDropHilited is correct, but it didn't work with the old _GUICtrlListView_SetItemState, with the corrected one, the DropHilite can be deleted again.
1:41 PM Ticket #555 (bug in _GUICtrlListView UDF) created by anonymous
_GUICtrlListView_SetItemDropHilited didnt work properly, so we tried …
7:30 AM Ticket #506 (_FileCountLines) updated by PoorLuzer
This function seems to be buggy. Discussion carried forward at: http://www.autoitscript.com/forum/index.php?showtopic=79656
6:50 AM Ticket #536 (ControlGetFocus() prevents double-clicks) updated by J-Paul Mesnage
Description changed
6:46 AM Ticket #549 (ControlSend sometimes sends wrong text) closed by J-Paul Mesnage
No Bug: depending what you are oing simulteaneously when running your script eg you can have such behaviour if the shift key used. the zedna suggestion is perfectly valid (controlsettext)

Sep 3, 2008:

6:38 PM Ticket #554 (AutoIt3Wrapper not processing "&" in path properly) created by dg0421
My source files are contained in: E:\ACE-IDS\XP & 2003 …

Sep 2, 2008:

10:23 PM Ticket #545 (Add other possibility in FAQ, point 13. Howto: custom icon) updated by Zedna
Replying to Valik: > SciTE4AutoIt3 and it's tools are not an official part of AutoIt. Adding documentation for how to do things which relies on tools not every user has installed is not a very good idea. I know about that but that's pity - in this case - because I think more than 90% of all AutoIt scripters use "default prefered" Scite4AutoIt3 editor. So this usefull trick "for masses" couldn't be delivered through helpfile. I posted this icon hint on the forum many times before.
5:27 PM Ticket #551 (ControlClick with "new" buttons syntax error (au3check)) closed by Jos
Fixed: Fixed in version: 3.2.13.8
5:23 PM Ticket #553 (_ArrayDisplay() has another problem if using literal pipes in the array) updated by GEOSoft
Sorry about the typo. The line In this case $Item = '|' will be truncated to $Item = ' and $Item_2 = will not display at all. Should have been In this case $Item = '|' will be truncated to $Item = ' and $Item_2 = || will not display at all.
5:21 PM Ticket #553 (_ArrayDisplay() has another problem if using literal pipes in the array) created by GEOSoft
I seldom use this function but it seems that each time I do, I find …

Sep 1, 2008:

5:25 PM Ticket #552 (ProcessExist/ProcessList optional username parameter) closed by Valik
No Bug: This is not a bug and the need is over-stated a bit. Closing as no bug.
4:00 PM Tickets #550,​551 batch updated by TicketCleanup
Version changed
Automatic ticket cleanup.
3:41 PM Ticket #552 (ProcessExist/ProcessList optional username parameter) created by Developer@…
ProcessExist and ProcessList could provide an optional username …
2:37 PM Ticket #549 (ControlSend sometimes sends wrong text) updated by Zedna
Note: It's also mentioned in Remarks in AutoIt helpfile at Send(), ControlSend()
2:19 PM Ticket #549 (ControlSend sometimes sends wrong text) updated by Zedna
Here are related links: http://www.autoitscript.com/forum/index.php?showtopic=32584 http://www.autoitscript.com/forum/index.php?showtopic=30171&st=0&p=215442?entry215442
2:14 PM Ticket #551 (ControlClick with "new" buttons syntax error (au3check)) created by Xenobiologist
Hi, ControlClick($title,, 1, 'primary') ControlClick($title,, 1, …
2:14 PM Ticket #549 (ControlSend sometimes sends wrong text) updated by Zedna
This is known bug/limitation related to some national keyboard layouts (like Czech in my case). You can find topics about that in old Bug forum section (not track) from me. Result was - it will not (can't) be fixed. You may use ControlSetText() as workaround or change keyboard layout to english then use Send()/ControlSend() and change layout back.
2:08 PM Ticket #550 (Run() - doc precision) created by Zedna
From AutoIt changelog: […] But there is no information about this …
3:21 AM Ticket #549 (ControlSend sometimes sends wrong text) created by www.songwei@…
ControlSend sometimes sends wrong text. For example, I want to send …

Aug 31, 2008:

10:00 AM Ticket #548 (Array initializing syntax everywhere) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
8:24 AM Ticket #548 (Array initializing syntax everywhere) created by monoceres
It would be great if this syntax: [1,2,3] would work just like an …
4:36 AM Ticket #547 (WinGetHandle and WinGetTitle under Vista) closed by Valik
No Bug: The reason is the windows are running on a different desktop. This is expected and is not a bug.
4:30 AM Ticket #547 (WinGetHandle and WinGetTitle under Vista) created by Developer@…
Under Vista, the WinGetHandle function does not return the handle of a …

Aug 30, 2008:

8:21 PM Ticket #543 (Autoit does not automate high res mouse motion correctly.) closed by Jos
No Bug
9:44 AM Ticket #544 (Read from console with FileRead) updated by paulpmeier
Thank you again, Valik. I have tested the _getch() function. I didn't know, that it's so easy to use the C-functions in AutoIt. Paul
6:27 AM Ticket #544 (Read from console with FileRead) updated by paulpmeier
Thank you, Valik for this information. I will try the API-functions. Paul

Aug 29, 2008:

5:10 PM Ticket #544 (Read from console with FileRead) updated by Valik
You could probably use the C-Runtime function _getch() which is exported from msvcrt.dll. You could also try out some of the Windows API console-specific functions like ReadConsole() or ReadConsoleInput(). These would, of course, need to be used via DllCall().
1:22 PM Ticket #543 (Autoit does not automate high res mouse motion correctly.) updated by anonymous
After disassembly of the application it looks like Autoit is doing the correct thing and Future Pinball is doing some bad signed/unsigned/zero boundry math on the mouse coords. I will work on getting it fixed.
8:59 AM Ticket #544 (Read from console with FileRead) updated by anonymous
Hi Valik, thank you for your reply. Please give me an example. How can I read keystrokes from the console prompt with ConsoleRead?
6:53 AM Ticket #497 (GUICtrlSetFont() does not work in a listview control) closed by J-Paul Mesnage
Works For Me
2:02 AM Ticket #485 (missing related links in helpfile) closed by Gary
Fixed: Fixed in version: 3.2.13.8
2:01 AM Ticket #545 (Add other possibility in FAQ, point 13. Howto: custom icon) closed by Valik
Rejected: SciTE4AutoIt3 and it's tools are not an official part of AutoIt. Adding documentation for how to do things which relies on tools not every user has installed is not a very good idea.
1:34 AM Ticket #511 (GUICtrlCreateTab - doc precision) closed by Gary
Rejected
1:31 AM Ticket #506 (_FileCountLines) closed by Gary
Fixed: Fixed in version: 3.2.13.8

Aug 28, 2008:

10:00 PM Ticket #546 (FileOpen() Shared/exclusive access) updated by TicketCleanup
Version, Milestone changed
Automatic ticket cleanup.
8:47 PM Ticket #546 (FileOpen() Shared/exclusive access) created by ChrisL
I would find it useful to add a new flag or flags to the FileOpen() …
6:10 PM Ticket #544 (Read from console with FileRead) closed by Valik
No Bug: This doesn't need documented. There is a native AutoIt function for doing the same thing so I don't feel that it is necessary for us to document alternate ways.
12:00 PM Ticket #545 (Add other possibility in FAQ, point 13. Howto: custom icon) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
10:21 AM Ticket #545 (Add other possibility in FAQ, point 13. Howto: custom icon) created by Triblade
In the helpfile under FAQ, point 13 there is written how to add a …
7:26 AM Ticket #544 (Read from console with FileRead) created by paulpmeier
The description of this feature I missed in the AutoIt Help: …
6:51 AM Ticket #543 (Autoit does not automate high res mouse motion correctly.) updated by J-Paul Mesnage
Please attached a repro script. Without using "Future Pinball" will be better, as we usely don't install extra software when debugging a report problem. Thanks
3:21 AM Ticket #543 (Autoit does not automate high res mouse motion correctly.) created by anonymous
The program I am trying to automate appears to use the directx high …

Aug 27, 2008:

7:18 PM Ticket #542 (StringRegEx causing a hard crash) created by Jos
http://www.autoitscript.com/forum/index.php?showtopic=76269&view=findpo
7:28 AM Ticket #541 (ControlCommand Helpfile typo) closed by J-Paul Mesnage
Fixed: Fixed in version: 3.2.13.8

Aug 26, 2008:

5:05 PM Ticket #540 (ProcessExists() causes a large number of page faults) closed by Valik
No Bug: It goes up by approximately 105 per call for me. However, this doesn't appear abnormal. Process Explorer, which I used to watch the page fault count, goes up by over 250 page faults per update interval. It appears that using the Windows API functions we do to enumerate processes just generates a lot of page faults. It's nothing to be concerned about.
12:33 PM Ticket #541 (ControlCommand Helpfile typo) created by Xenobiologist
Hi, ControlCommand helpfile little typo. "HideDropDown", "" UNdrops …
9:31 AM Ticket #540 (ProcessExists() causes a large number of page faults) created by MarcoM
I know that page faults are not errors per se, but ProcessExists() is …
2:50 AM Ticket #539 (StringSplit w/ flag 2 doesn't return string if no delims) created by wraithdu
In StringSplit() with flag 2 (no return count in first element), if …
12:17 AM Ticket #538 (GUICtrlCreateGraphic - working on last GUI created) closed by Valik
No Bug: This is not a bug. ANY control you try to create will fail. Controls are created on the GUI that is set internally as the "current" GUI. Since you deleted the current GUI, creation fails. To control what GUI controls are created on, use GUISwitch().

Aug 25, 2008:

11:58 PM Ticket #538 (GUICtrlCreateGraphic - working on last GUI created) created by enaiman
Hi, I'm not sure if this is an intended behaviour or a bug. …
10:14 PM Ticket #537 (Strange behaviour while using wrong GUI parameter) updated by Valik
Does it matter? It's bad input and bad things happen. I'm not interested in debugging why Windows behaves the way it does with garbage input like that.
8:51 PM Ticket #537 (Strange behaviour while using wrong GUI parameter) updated by Xenobiologist
Yes, but why does Windows hang after passing a handle as style?
6:50 PM Ticket #537 (Strange behaviour while using wrong GUI parameter) closed by Valik
No Bug: It's not strange. You're passing an HWND as the extended style. Since the HWND changes from run to run, you pass a different value every time. Since the extended style is just bitwise flags, you're passing a different combination each time. That's why the results are unpredictable.
5:33 PM Ticket #537 (Strange behaviour while using wrong GUI parameter) created by Xenobiologist
Hi, I tested this script and my Windows hung up after I clicked the …
12:00 PM Ticket #535 (don't pause the script when the tray menu is open or the gui title bar ...) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
11:20 AM Ticket #536 (ControlGetFocus() prevents double-clicks) created by MarcoM
It seems that polling which control has the focus with …
11:15 AM Ticket #535 (don't pause the script when the tray menu is open or the gui title bar ...) created by ar.0.cut.all.the.dots@…
Clicking on the script's tray menu or a GUI window title bar pauses …

Aug 24, 2008:

4:19 AM Ticket #534 (Binary() is ****ed up) closed by Valik
No Bug: It looks correct to me. It stores the int 256 in binary format which is 0x00000100 in hex. But here's the catch, it's stored in little-endian which is why you see it as 0x00010000. You can use this line to see how the bytes are stored little-endian: […] When you read it right to left, 2 characters at a time, it spells 0xDEADBEEF again showing how little-endian stores it. I also get 0x00010000 both times so I don't see any bugs at all.
4:00 AM Ticket #534 (Binary() is ****ed up) updated by TicketCleanup
Severity changed
Automatic ticket cleanup.
3:55 AM Ticket #534 (Binary() is ****ed up) created by mmavipc@…
heres some example code $nNum = 256 consolewrite(binary($nNum) & @lf) …

Aug 22, 2008:

9:57 PM Ticket #533 (_ArrayBinarySearch allows multi-dimension array when it shouldn't) closed by Gary
Fixed: Fixed in version: 3.2.13.8
4:44 PM Ticket #532 (Adding Icons to Tray Menu) closed by Valik
Rejected: This is outside the scope of what AutoIt should be doing.
3:55 PM Ticket #533 (_ArrayBinarySearch allows multi-dimension array when it shouldn't) created by Triblade
It's my coding mistake that I tried to use it on a two dimensional …
2:00 PM Ticket #532 (Adding Icons to Tray Menu) updated by TicketCleanup
Version, Milestone changed
Automatic ticket cleanup.
12:05 PM Ticket #532 (Adding Icons to Tray Menu) created by playzoneuk
Is there a possibility of having the ability to add icons to Tray …
12:32 AM Ticket #530 (HotKeySet ignores optional parameters) updated by anonymous
Replying to Valik: > This is not a bug. Fair enough :o) I would like to request the documentation for the "HotKeySet" function be modified to better clarify this as it doesn't implicitly state optional parameters will also be treated as if undefined when the target function is called from "HotKeySet"

Aug 21, 2008:

5:28 PM Ticket #530 (HotKeySet ignores optional parameters) closed by Valik
No Bug: This is not a bug.
4:00 PM Ticket #531 (GuiCtrlSetGraphic documentation) created by koshyjohnuk
This is not major. Just a couple of mistakes in the help file for the …
12:49 PM Ticket #530 (HotKeySet ignores optional parameters) created by danerjones@…
After executing this function: […] The following Error was …
10:00 AM Tickets #528,​529 batch updated by TicketCleanup
Version, Milestone changed
Automatic ticket cleanup.
8:50 AM Ticket #529 (Identifying .NET controls using WM_GETCONTROLNAME) created by zfisherdrums
Having read previous request and response for DataGrid on ticket #23, …
8:31 AM Ticket #528 (Native Control Identification and Property Retrieval using Active ...) updated by anonymous
Title correction: should read "Accessibility" Code example correction: […]
8:29 AM Ticket #528 (Native Control Identification and Property Retrieval using Active ...) created by zfisherdrums
<disclaimer> I request this understanding that it may be outside of …

Aug 19, 2008:

9:36 PM Ticket #527 (Abend 0xC0000005 at 7C9109F9 in Aut2exe.exe (ntdll.dll)) updated by Jos
See this thread for more info on the code. The OP had a SPAM issue attaching it. : http://www.autoitscript.com/forum/index.php?s=&showtopic=78678&view=findpost&p=567899 I couldn't get it to crash with the given code. Jos
8:20 PM Ticket #527 (Abend 0xC0000005 at 7C9109F9 in Aut2exe.exe (ntdll.dll)) updated by Valik
There is no thing attached.
8:19 PM Ticket #526 (0x8007007E error when compiled 32 bit. OK when compiled 64 bit. Reopened.) closed by Valik
Duplicate: Appears to be a duplicate of #525
8:16 PM Ticket #525 (0x8007007E error when compiled 32 bit. OK when compiled 64 bit. Reopened.) closed by Valik
No Bug: You have to turn WOW64 redirection off. Windows is going to continue to redirect the system32 directory for a 32-bit process to the SYSWOW64 directory which contains the 32-bit files. That's why you get the "module not found" error - it's not looking where you think it is. Look at Using AutoIt -> Running under Windows 64-bit Edition in the documentation for more information about directory/registry redirection under 64-bit Windows and what you can do to turn it off. This is still not a bug in AutoIt.
8:06 PM Ticket #524 (MsgBox(): Text as first parameter) closed by Valik
Rejected
7:20 PM Ticket #527 (Abend 0xC0000005 at 7C9109F9 in Aut2exe.exe (ntdll.dll)) created by Spiff59
The attached (unfinished) code runs interpretively out of SciTe, but …
3:43 PM Testit2.AU3 attached to Ticket #526 by anonymous
3:43 PM Ticket #526 (0x8007007E error when compiled 32 bit. OK when compiled 64 bit. Reopened.) created by drummer
The Run function returns error 0x8007007E when I run the attached …
3:42 PM Testit2.2.AU3 attached to Ticket #525 by drummer
3:41 PM Testit2.AU3 attached to Ticket #525 by anonymous
3:41 PM Ticket #525 (0x8007007E error when compiled 32 bit. OK when compiled 64 bit. Reopened.) created by drummer
The Run function returns error 0x8007007E when I run the attached …
3:33 PM Testit2.AU3 attached to Ticket #469 by drummerdp
2:18 PM Ticket #524 (MsgBox(): Text as first parameter) updated by amokoura
Discussion here http://www.autoitscript.com/forum/?showtopic=78649
2:00 PM Ticket #524 (MsgBox(): Text as first parameter) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
12:12 PM Ticket #524 (MsgBox(): Text as first parameter) created by amokoura
I suggest MsgBox function to have the text parameter to be the first. …

Aug 17, 2008:

3:43 PM Ticket #523 (Associative arrays...) closed by Valik
Rejected: The answer doesn't change no matter how many times this is asked for (also known as, search first, please).
2:00 PM Ticket #523 (Associative arrays...) updated by TicketCleanup
Version, Milestone changed
Automatic ticket cleanup.
1:52 PM Ticket #523 (Associative arrays...) created by Tom---Schuster@…
Please, implant associative arrays it would make scripting for me much …
Note: See TracTimeline for information about the timeline view.