Timeline



Sep 25, 2018:

7:21 PM Ticket #3657 (Incorrect behaviour while using _GUICtrlListView_SimpleSort when no ...) closed by Melba23
Fixed: Fixed by revision [12167] in version: 3.3.15.1
7:10 PM Ticket #3660 (Enhancement - PixelSearch to return the color it found) updated by Melba23
/ A gaming bot for one / Not exactly the best argument to put forward to support your request - read the Forum rules to see why: https://www.autoitscript.com/forum/topic/169097-forum-rules/ / an incremental improvement in design / Much better. ;) I am not convinced that there is a need for this other than for gaming - "sensible" apps tend not to have elements with colour changes happening so quickly, nor do they normally require the use of colour ranges. But if it is easy to do.....we will let the Devs decide. M23
7:02 PM Ticket #3668 (.exe has stopped working error message) closed by Melba23
No Bug: You have a forum thread running on this problem - please do not create a ticket unless you have a confirmed bug. M23
2:39 PM Ticket #3660 (Enhancement - PixelSearch to return the color it found) updated by anonymous
Actually, this makes sense if you think about it in this way... What the PixelSearch function does is allow you to specify ranges, and it goes off and finds a specific value that matches those ranges. It allows you to specify a range of X. It allows you to specify a range of Y. It allows you to specify a range of C. (Color) It goes off and looks for a match and returns what it found. It returns the matching X it found within the range of X you specified. It returns the matching Y it found within the range of Y you specified. But it does not return the matching C it found within the range of C you specified. It would be an improvement to return all three of the matching parameters instead of just two of them. Expecting the caller to make a second call to PixelGetColor is not only a needless waste of cycles, but it also expects the caller to depend on a race condition. They would get the correct value back from a followup call to PixelGetColor only if the screen didn't happen to update in between those two function calls. It's easy to argue that calling PixelGetColor gets you the info you need, but that would be arguing in favor of a race condition. It seems it would just make sense to return all 3 matching params rather than just two out of three. It would not only eliminate the race condition issue, but it should also be minimal programming effort to return the extra value since it obviously is already being looked at internally, and it also would be a backwards compatible code change. It seems there is more benefit to do it than not to.
1:20 PM AutoIT Tool.png attached to Ticket #3668 by manojkqtp@…
1:19 PM Ticket #3668 (.exe has stopped working error message) created by manojkqtp@…
Hi I have little experience in Auto IT tool. we have created code …
9:07 AM Ticket #3667 (Continuation line with no code on it passes Au3Check but at runtime ...) updated by Jos
Owner, Status changed
9:03 AM Ticket #3667 (Continuation line with no code on it passes Au3Check but at runtime ...) updated by Jos
Even simpler example. This is ok: […] This is not: […] Giving this error: […] So the question is whether just a continuation character on a line is valid syntax? Jos
12:27 AM Ticket #3667 (Continuation line with no code on it passes Au3Check but at runtime ...) created by c.haslam
Try this script: […]

Sep 24, 2018:

2:46 PM Ticket #3666 (Au3Check issue when error is in include at last line and there is no ...) updated by Jos
This is confirmed and happens when the last line in an included file has an error and doesn't have a CRLF at the end. Needs investigation why this is happening.
12:23 PM Track_Au3Check_UDF.au3 attached to Ticket #3666 by mLipok
12:23 PM Track_Au3Check_Main.au3 attached to Ticket #3666 by mLipok
12:22 PM Ticket #3666 (Au3Check issue when error is in include at last line and there is no ...) updated by mLipok
Description changed
12:19 PM Ticket #3666 (Au3Check issue when error is in include at last line and there is no ...) created by mLipok
Try to run: Track_Au3Check_Main.au3 […] After quick check you …

Sep 21, 2018:

1:00 PM Ticket #3664 (Spam) closed by Melba23
Rejected
1:00 PM Ticket #3664 (Spam) updated by Melba23
Description, Summary changed
7:00 AM Ticket #3664 (Spam) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
6:10 AM Ticket #3664 (Spam) created by samstanford@…
Text removed - M23

Sep 18, 2018:

6:56 PM Ticket #3663 (documentation for AdlibRegister()) closed by Melba23
Completed: Changed by revision [12164] in version: 3.3.15.1
10:00 AM Ticket #3663 (documentation for AdlibRegister()) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
9:42 AM Ticket #3663 (documentation for AdlibRegister()) created by rudi
The documentation for this function should point out, that the fist …

Sep 7, 2018:

12:00 PM Ticket #3662 (Additional Parameter for FileGetTime() to return the milliseconds as well) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
11:37 AM Ticket #3662 (Additional Parameter for FileGetTime() to return the milliseconds as well) created by rudi
Fact: NTFS has very accurate file timestamp information, but …
1:09 AM Ticket #3660 (Enhancement - PixelSearch to return the color it found) updated by anonymous
> Can you offer a real-world example of when this might be required A gaming bot for one. But one could also argue that it's an incremental improvement in design.

Sep 6, 2018:

9:18 PM Ticket #3661 (Creating a button: want to know where it ends) closed by Melba23
Rejected: A better idea would be to measure your text and create a button to fit. Look at my StringSize UDF. And next time, ask for help on the forum rather then ask for ridiculous features to be added. M23
6:00 PM Ticket #3661 (Creating a button: want to know where it ends) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
5:53 PM Ticket #3661 (Creating a button: want to know where it ends) created by gf16954@…
When I create a button by GUICtrlCreateButton without a Width …
5:24 PM Ticket #3660 (Enhancement - PixelSearch to return the color it found) updated by Melba23
/ Sometimes one needs to know what color was actually found / Really? Can you offer a real-world example of when this might be required because an immediate PixelGetColor call would not return the same value? M23

Sep 4, 2018:

10:18 PM Ticket #3660 (Enhancement - PixelSearch to return the color it found) updated by BrewManNH
Why don't you just use PixelGetColor after the return from PixelSearch?
1:00 AM Ticket #3660 (Enhancement - PixelSearch to return the color it found) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
12:37 AM Ticket #3660 (Enhancement - PixelSearch to return the color it found) created by anonymous
Currently the PixelSearch function returns a two element array …

Sep 3, 2018:

4:41 PM Ticket #3657 (Incorrect behaviour while using _GUICtrlListView_SimpleSort when no ...) updated by s.smeitz@…
You're totally right. More complex it is. Your solution works good :-)

Sep 2, 2018:

12:32 PM Ticket #3659 (InetClose() always return "False".) created by the.tersion@…
The reference of InetClose() says: Return Value True: if the handle …

Sep 1, 2018:

6:20 PM Ticket #3658 (Problem Number) updated by jchd18
I answered your very same question on the French forum. In the future, post on one forum and wait for support there before asserting a bug here.
12:23 PM Ticket #3658 (Problem Number) closed by Melba23
No Bug
12:23 PM Ticket #3658 (Problem Number) updated by Melba23
You need to use Execute and not Number: […] Using Number just returns the digits until the first non-digit, so "6-4" becomes "6". M23 P.S And better to post in the forum for support rather than immediately claiming "bug"
12:14 PM Ticket #3657 (Incorrect behaviour while using _GUICtrlListView_SimpleSort when no ...) updated by Melba23
It always helps to post runnable code - but I see the problem. The problem is more complex that you suggest as there are 3 possible situations: - No selection: returns empty string (no delimiters) - Single selection: returns single index (no delimiters) - Multiple selections: returns delimited string of indices I have come up with the following code to replace the current version: […] becomes […] Try it and see if it works for you as well as it does for me. M23
10:56 AM Ticket #3658 (Problem Number) created by anonymous
$Num="89304402523905652748447801781" $result=Mod($Num,97) ; = 64 …

Aug 31, 2018:

9:16 AM Ticket #3657 (Incorrect behaviour while using _GUICtrlListView_SimpleSort when no ...) updated by s.smeitz@…
Forgot to post the source code: #include <GUIConstantsEx.au3> #include <MsgBoxConstants.au3> #include <WindowsConstants.au3> #include <GuiListView.au3> Example() Func Example() GUICreate("listview items", 220, 250, 100, 200) Local $idListview = GUICtrlCreateListView("col1 |col2|col3 ", 10, 10, 200, 150) ;,$LVS_SORTDESCENDING) Local $idButton = GUICtrlCreateButton("Sort", 75, 170, 70, 20) Local $idItem1 = GUICtrlCreateListViewItem("item2|col22|col23", $idListview) Local $idItem2 = GUICtrlCreateListViewItem("item1|col12|col13", $idListview) Local $idItem3 = GUICtrlCreateListViewItem("item3|col32|col33", $idListview) GUISetState(@SW_SHOW) ; Loop until the user exits. While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE ExitLoop Case $idButton Msgbox($MB_OK,"Items selected?","Number items selected: " & _GUICtrlListView_GetSelectedCount($idListview)) _GUICtrlListView_SimpleSort($idListview,False,0) Msgbox($MB_OK,"Items selected?","Number items selected: " & _GUICtrlListView_GetSelectedCount($idListview)) Case $idListview MsgBox($MB_SYSTEMMODAL, "listview", "clicked=" & GUICtrlGetState($idListview), 2) EndSwitch WEnd EndFunc ;==>Example
8:51 AM Ticket #3657 (Incorrect behaviour while using _GUICtrlListView_SimpleSort when no ...) created by s.smeitz@…
When using a ListView (singlesel not enabled) which is populated with …

Aug 30, 2018:

5:00 PM Ticket #3656 (PCRE updates and security issues) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
4:40 PM Ticket #3656 (PCRE updates and security issues) updated by BrewManNH
Type changed
As there is no bug in AutoIt currently, I'm reclassifying this as a Feature Request.

Aug 29, 2018:

9:08 AM Ticket #3183 (Aut2Exe: Exe won't run "Unable to open the script file" (with ...) updated by mko
I Think it could be a timing problem not only AV In my environement we changed the Profilepath to a server share, so the /out destination was a share and not a lokal drive. so i had "Error adding script file:" "H:\Profile\Appdata\local\Autoit v3\Aut2EXE\aut4f92.tmp.tok" but the file exists!

Aug 28, 2018:

12:04 PM Ticket #3656 (PCRE updates and security issues) created by anonymous
Hello, AutoIt includes PCRE version 8.37 Latest PCRE version in this …
9:43 AM Ticket #3654 (_IECreateEmbedded isn't accessibil with screen readers) updated by mLipok
I checked this with TeamViewer comment window (which is IE embeded) and I do not understand your request. Please show any example.
Note: See TracTimeline for information about the timeline view.