Timeline



Jul 22, 2011:

5:23 PM Ticket #1981 (ConsoleWrite is too obscure) updated by Jos
Did you try to use Search with keyword stdout? Jos duh ... missed the above post by Valik.
5:18 PM Ticket #1981 (ConsoleWrite is too obscure) closed by Valik
Rejected: I just opened the AutoIt help file and searched for "stdout" and the first result is ConsoleWrite(). If that is "obscure" then you have a very strange definition of the word. As for the naming convention, it is consistent. Whenever AutoIt reads or writes to it's own stdin/stdout/stderr handles it uses a function prefixed with "Console". When it reads/writes to another applications it uses StdXXX. Two separate sets of functions which serve two different purposes with two different naming conventions.
5:13 PM Ticket #1980 (Forum app) closed by Valik
Rejected: Err, what? Did you totally space out and forget your Android/Apple device has a web browser? Really really stupid request that has nothing to do with AutoIt. Don't waste our time with crap like this.
4:39 PM Ticket #1970 (Bug added to internal __FTP_ListToArray()) updated by anonymous59
I'd still argue that the smaller version from BT #1499 is a better choice as it results in less code to maintain, is faster, and it's only functional difference is useful. Returning the results in Folder/File/File.../File/Folder/File/File.../File/Folder... sequence allows you to determine which files are within which folders. That information is lost in the larger version where the array is returned in "Folder/Folder.../Folder/File/File.../File" order.
4:12 PM Ticket #1982 (FileGetShortName crashes when path is too long) updated by Pinault <pszczepa@…>
Illustration by code and unit test available at http://www.autoitscript.com/forum/topic/131108-filegetshortnamev2au3/ Regards
3:57 PM Ticket #1982 (FileGetShortName crashes when path is too long) created by Pinault
OK for not supporting long paths in most API (see ticket 1795)... fair …
3:00 PM Ticket #1981 (ConsoleWrite is too obscure) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
12:33 PM Ticket #1981 (ConsoleWrite is too obscure) created by new2net
It took forever to find a post on the forums for the correct method to …
12:00 PM Ticket #1980 (Forum app) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
10:55 AM Ticket #1980 (Forum app) created by keithdib@…
Hi I know technicaly its not a feature, but are there any plans to …
9:05 AM Ticket #1979 (_WinAPI_SetWindowsHookEx() Don`t work with all idHook) created by monoscout999
_WinAPI_SetWindowsHookEx() only works when the idHook parameter is …

Jul 20, 2011:

4:50 PM Ticket #1978 (Problem with Standby and hibernate program written by Bastel123 aka ...) closed by Jos
No Bug: Pls read the information before posting here as this clearly is not an AutoIt3 bug.
7:15 AM Ticket #1978 (Problem with Standby and hibernate program written by Bastel123 aka ...) created by p.amarnathreddy484@…
When i run Standby and hibernate program written by Bastel123 aka …

Jul 19, 2011:

11:42 PM Ticket #1977 (_ScreenCapture_CaptureWnd - wrong capture on maximized window) updated by MrCreatoR <mscreator@…>
One small correction, the $iBorder initialy should be = 1 (Local ..., $iBoderd = 1), because when capturing not maximized window, it's also captured with extra pixels, it's probably the same issue as it was with _ScreenCapture_Capture.

Jul 18, 2011:

2:41 PM Ticket #1977 (_ScreenCapture_CaptureWnd - wrong capture on maximized window) created by MrCreatoR <mscreator@…>
Whe we use _ScreenCapture_CaptureWnd on maximized window, there is …

Jul 16, 2011:

11:31 PM Ticket #1976 (HotKeySet() - possible bug/conflict with F1) closed by Jos
Wont Fix: This will happen when the script is already running and started with F5/Run from withing SciTE. This is a known issue with SciTE's standard version we use and will not be fixed by me. Jos
11:12 PM Ticket #1976 (HotKeySet() - possible bug/conflict with F1) created by anonymous
tried a few different keys and the key does not seem to matter. when …
7:12 PM Ticket #1974 (Tidy autoit source auto include and global comment) updated by Jos
Keywords, Owner, Component changed
I can imagine this could be done in the Documentation option, but I am not planning to have Tidy add this kind of information to a script as that would mean multiple Iterations. Have you looked /GD option?
7:07 PM Ticket #1969 (User files for SciTE abbreviation) closed by Jos
Rejected
6:01 PM Ticket #1975 (IE object does not recognized as valid object type) closed by Jon
Fixed: Fixed by revision [6192] in version: 3.3.7.15
2:15 PM Ticket #1975 (IE object does not recognized as valid object type) updated by DaleHohm
This is another issue introduced with the change to the ObjName function and the return value for different objects. The embedded object used to return "IWebBrowser2" and it now returns "WebBrowser". So, the fix is in IE.au3, function IsObjType() change at line 3686: from this 3685 Case "browser" 3686 If ($s_Name = "IWebBrowser2") Or ($s_Name = "IWebBrowser") Then $objectOK = True to this 3685 Case "browser" 3686 If ($s_Name = "IWebBrowser2") Or ($s_Name = "IWebBrowser") Or ($s_Name = "WebBrowser") Then $objectOK = True Dale

Jul 15, 2011:

11:45 PM Ticket #1975 (IE object does not recognized as valid object type) created by MrCreatoR <mscreator@…>
This bug was introduced in the latest betas (not sure in what …
12:00 AM Ticket #1974 (Tidy autoit source auto include and global comment) updated by TicketCleanup
Version changed
Automatic ticket cleanup.

Jul 14, 2011:

10:45 PM Ticket #1974 (Tidy autoit source auto include and global comment) updated by anonymous
Example of what tidy could maybe do. ---before-- #Include <Date.au3> Global $sDate echodate() Func echodate() Local $X = 1000 $sDate = _Now() ConsoleWrite(@LF & $sDate) Sleep($X) $sDate = _Now() ConsoleWrite(@LF & $sDate) EndFunc ;==>echodate ---after tidy--- #Include <Date.au3>; _now, Global $gsDate echodate() Func echodate() Local $lX = 1000 $gsDate = _Now() ConsoleWrite(@LF & $gsDate) Sleep($lX) $gsDate = _Now() ConsoleWrite(@LF & $gsDate) EndFunc ;==>echodate
10:34 PM Ticket #1974 (Tidy autoit source auto include and global comment) created by arustad@…
I think it would be nice if the tidy tool would add a comment next the …

Jul 12, 2011:

12:23 PM Ticket #1973 (_IEAttach failes and crashes on some special window constellations) created by Samoth
When there is a Web Browser window open not being a …
12:03 PM Ticket #1415 (Issue with IE & HWnd($o_object.HWnd()) ERROR) updated by Samoth
It actually is a bug... And I know a workaround. See this post and its previous posts for error tracking. There's good work done over there.
8:59 AM Ticket #1972 (Strange behavior with ControlClick and deactivated button on AutoIt GUI) updated by J-Paul Mesnage
Description changed

Jul 11, 2011:

11:04 PM Ticket #1972 (Strange behavior with ControlClick and deactivated button on AutoIt GUI) created by Tlem
I don't know if it can be considered for a bug, but if you use a …
9:18 PM Ticket #1935 (_IEBodyReadText with IE9 failed) updated by DaleHohm
Again, suggest you test with VBS: set oIE = CreateObject("InternetExplorer.Application") oIE.visible=1 oIE.navigate2("file:///C:\temp.html") Wscript.sleep 6000 MsgBox(oIE.document.body.innerText) Dale
8:55 PM Ticket #1938 (_IEQuit IE9) updated by DaleHohm
JP, I'd suggest you test with VBS and see what your result is: set oIE = CreateObject("InternetExplorer.Application") oIE.visible=1 oIE.navigate2("temp.html") oIE.quit Dale

Jul 10, 2011:

6:00 PM Ticket #1971 (_GUICtrlListBox_SetHeaderColor) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
3:10 PM Ticket #1971 (_GUICtrlListBox_SetHeaderColor) created by JAFN
I'm sure this must have been asked for before but I am not finding it. …
3:09 PM Milestone 3.3.7.14 completed
10:20 AM _FTP_Listtoarray Fix.au3 attached to Ticket #1970 by Beege
10:20 AM Ticket #1970 (Bug added to internal __FTP_ListToArray()) created by Beege
Very sorry about this but some time back I submitted a request here …
8:21 AM Ticket #1963 (Ticket 1658 Still Not Working in 3.3.7.10) closed by Jon
Duplicate
8:20 AM Ticket #1956 (3.3.7.10 COM error getting reference to document in frame) closed by Jon
Fixed: Fixed by revision [6187] in version: 3.3.7.14

Jul 7, 2011:

11:30 PM Ticket #1969 (User files for SciTE abbreviation) updated by Forumer100
Jos, thanks for the clarification. You are out of the game. ;-) I will look if there is a feature request tracker for standard SciTE. But I will not write this "own little script". Inefficient to invent the reel twice. :-) I will use this: http://www.autoitscript.com/forum/topic/107201-abbrev-management-in-scite/page__view__findpost__p__756166 Thanks for your time. Regards Forumer100

Jul 6, 2011:

6:02 PM Ticket #1969 (User files for SciTE abbreviation) updated by Jos
Assume you are talking about the Abbrev.properties and au3.keywords.abbreviations.properties files? What do you propose we do given that abbrev.properties is a fixed filename in the standard SciTE version distributed by Neil. Why not write your own little script that you run each time you update your installation, which will copy you own version of the files to the standard files? Jos
6:00 PM Ticket #1969 (User files for SciTE abbreviation) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
5:52 PM Ticket #1968 (SciTE abbreviation "mb2 " not working any more.) closed by Jos
Fixed: Will be fixed in the next version. tnx Jos
4:54 PM Milestone 3.3.7.13 completed
3:14 PM Ticket #1969 (User files for SciTE abbreviation) created by Forumer100
When installing a new version of SciTE4AutoIt, the modifications in …
2:49 PM Ticket #1968 (SciTE abbreviation "mb2 " not working any more.) created by Forumer100
In SciTE 2.27 there is a mismatch between the abbrev.properties and …
9:46 AM Milestone 3.3.7.12 completed

Jul 4, 2011:

11:20 AM Milestone 3.3.7.11 completed
11:01 AM Ticket #1956 (3.3.7.10 COM error getting reference to document in frame) updated by arcker
same as above, the _IECreateEmbedded ( ) example doesn't work while running in beta 3378,3379 and 33710. Result : >Running:(3.3.7.10):C:\Program Files (x86)\AutoIt3\Beta\autoit3_x64.exe "C:\Program Files (x86)\AutoIt3\Beta\Examples\Helpfile\_IECreateEmbedded.au3" --> IE.au3 V2.4-0 Error from function _IENavigate, $_IEStatus_InvalidObjectType +>11:57:30 AutoIT3.exe ended.rc:0 >Exit code: 0 Time: 6.736 same using x86 autoit.

Jul 3, 2011:

10:03 PM Ticket #1967 (Infinite loop) closed by Valik
Rejected: I had to read this ticket twice to make sure I wasn't mistaken. This is one of the dumbest tickets I've ever seen. Let's enumerate! 1. You set the component to Au3Info when it pertains to AutoIt. 2. You ask for an infinite loop to not be infinite. 3. You suggest that AutoIt should determine for the user how to proceed when the situation is ambiguous. 4. You don't seem to realize that in ambiguous cases or even trivial cases like this that it is up to the programmer, not the language, to determine correct behavior. 5. You suggest there is obvious behavior to the code snippet you provide but then the next sentence seems to imply you do not consider the expected and executed behavior to be correct and/or obvious. 6. The code you show is not valid syntax; you cannot access a temporary array using the syntax you demonstrate. That's a mighty fine list…
9:00 AM Ticket #1967 (Infinite loop) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
6:28 AM Ticket #1967 (Infinite loop) created by roi2860@…
During infinite loop I suggest acting static (obviously only when is …

Jul 2, 2011:

9:00 PM Ticket #1966 (Transparent Tree View) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
8:19 PM Ticket #1966 (Transparent Tree View) created by anonymous
I think this is worth adding because I find myself in need of it and …
10:03 AM Ticket #1956 (3.3.7.10 COM error getting reference to document in frame) updated by J-Paul Mesnage
regression start with 3.3.7.9

Jul 1, 2011:

11:08 PM Ticket #1965 (Round() sometimes don't work) closed by Jon
Works For Me
10:19 PM Ticket #1958 (IniReadSection Problem) closed by Jon
Wont Fix
10:06 PM Ticket #1946 (_WordCreate Error?) closed by Jon
Fixed: Fixed by revision [6171] in version: 3.3.7.11
8:44 PM Ticket #1946 (_WordCreate Error?) updated by Bob Anthony
As per discussion with tracexx, backwards compatibility is not required for internal functions within the standard UDF collection. The code should be changed as follows: […]
6:39 PM Ticket #1874 (Registry functions should return more meanginful values) updated by anonymous
I see this was rejected... Can explain why it was rejected?
4:39 PM Ticket #1946 (_WordCreate Error?) updated by Bob Anthony
AutoIt is now returning the object names without the preceding underscore. If following lines are changed in Word.au3 it works as expected. […] […]
4:17 PM Ticket #1944 (AdlibUnRegister not working trusty) closed by J-Paul Mesnage
No Bug: I agree that a global is "the solution" but the sleep can work in some case at least on my system. There is nothing with the current implementation of AutoIt that we can do inside AutoIt. You need to use Global to avoid such interaction between Adlib's

Jun 30, 2011:

2:49 PM Ticket #1944 (AdlibUnRegister not working trusty) updated by Devol
Replying to Devol: > Sorry , but the Sleep doesn`t solve the problem(just tried it). > AdlibUnregister should stop a registered function to be executed, right? > So what if it`s important that an function really needs to be stopped? > In my opinion it`s a bug, sry.. It only works with global variables: […]
1:38 PM Ticket #1944 (AdlibUnRegister not working trusty) updated by Devol
Sorry , but the Sleep doesn`t solve the problem(just tried it). AdlibUnregister should stop a registered function to be executed, right? So what if it`s important that an function really needs to be stopped? In my opinion it`s a bug, sry..

Jun 28, 2011:

5:10 PM Ticket #1944 (AdlibUnRegister not working trusty) updated by J-Paul Mesnage
From my point of view there is no bug but just a race condition. When the AdlibUnRegister is requested the previous execution can be just beginning. No way to stop it but the GUICtrlSetData($Label,"Stopped") will be overwrite with the end of execution of _Laufschrift() some global variable can be set to reflect that we want to stop or ad a slight delay before executing GUICtrlSetData($Label,"Stopped") that will force the execution of the previous Adlib. Remember AutoIt is not multithreaded so Adlib is executing between statements […]
3:19 PM Ticket #1944 (AdlibUnRegister not working trusty) updated by Devol
@dev`s Did someone already took a look on it?
12:37 AM Ticket #1965 (Round() sometimes don't work) updated by mvg
Roger. My mistake.

Jun 27, 2011:

7:28 PM Ticket #1965 (Round() sometimes don't work) updated by J-Paul Mesnage
Replying to mvg: > +24h > None reproducible. (Xp.x86) that the reason Zedna ask for a repro script
12:59 PM Ticket #1965 (Round() sometimes don't work) updated by mvg
+24h None reproducible. (Xp.x86)

Jun 26, 2011:

11:23 AM Ticket #1965 (Round() sometimes don't work) updated by Zedna
Reproducing script is missing.
11:08 AM Ticket #1965 (Round() sometimes don't work) created by maerzi@…
I'm using the function like this Round($i ,2). It is working most …
7:02 AM Ticket #1499 (Performance increase to internal __FTP_ListToArray()) updated by Beege
Sorry to be the one who caused a bug, but the mistake pointed out in my code submitted above never got corrected before being applied to the beta. Also my opinion on which is best (Spiff59 or mine), I personally would like to stick to the one I submitted. Not because its mine but because it leaves the return format of the array same. Spiff59s function is a bit quicker, but like he said it changes the return format which could possible cause users scripts to break or act/look differently. I would only push for a change like that if the performance increase was much higher.

Jun 25, 2011:

1:15 PM Ticket #1962 (Au3Record.exe miss MSVCR100.dll) closed by Jon
Duplicate

Jun 24, 2011:

7:06 PM Ticket #110 (GUICtrlCreateObj controls do not correctly track focus.) updated by anonymous
Still happening in 3.3.6.1 production has this been fixed in beta 3.3.7.10 ?
12:16 PM Ticket #1964 (can't make zero-length array, array functions messed up) updated by mvg
@OP: AutoIt feature. @Dev: Doc(bug)(+3.3.7.10) not clear about "[subscript 1]" needing to be "1 to n-1" instead of the "0 to n-1" (valid for consecutive subscript's but not for first.).
6:02 AM Ticket #1964 (can't make zero-length array, array functions messed up) created by jmichae3@…
http://www.autoitscript.com/autoit3/docs/keywords/Dim.htm I tried …

Jun 22, 2011:

3:16 PM Ticket #1963 (Ticket 1658 Still Not Working in 3.3.7.10) created by mejonah@…
This (closed, fixed) ticket: …
5:40 AM Ticket #1962 (Au3Record.exe miss MSVCR100.dll) created by Anomalism@…
Au3Record.exe miss MSVCR100.dll
12:05 AM Ticket #1960 (AdlibRegister - Parameter to call function instantly) updated by Valik
1. It is not our responsibility to support Obfuscator since it is not a first party tool. 2. Learn how to use Obfuscator instead of assuming it or the language is broken.
12:02 AM Ticket #1961 (Pixel functions feature/bug?) closed by Valik
No Bug: You have no reason to be posting here. You are neither asking for a feature nor posting a bug report. Please do not misuse our issue tracker in the future.
Note: See TracTimeline for information about the timeline view.