Timeline



Jan 17, 2013:

4:23 PM Ticket #2305 (_ScreenCapture_Capture() - Width & Heigth wrong) updated by anonymous
So maybe leave the +1 untouched and replace If $iRight = -1 Then $iRight = _WinAPI_GetSystemMetrics($SCREENCAPTURECONSTANT_SM_CXSCREEN) If $iBottom = -1 Then $iBottom = _WinAPI_GetSystemMetrics($SCREENCAPTURECONSTANT_SM_CYSCREEN) with If $iRight = -1 Then $iRight = _WinAPI_GetSystemMetrics($SCREENCAPTURECONSTANT_SM_CXSCREEN) - 1 ; -1 to correct 0,0 initial screen-pos If $iBottom = -1 Then $iBottom = _WinAPI_GetSystemMetrics($SCREENCAPTURECONSTANT_SM_CYSCREEN) - 1 ; -1 to correct 0,0 initial screen-pos ?
4:07 PM Ticket #2305 (_ScreenCapture_Capture() - Width & Heigth wrong) updated by anonymous
Well, a really philosophical question... Capturing the full screen starts at 0,0 and thus the +1 results in a pic of 801x601 on a 800x600 screen.
3:55 PM Ticket #2305 (_ScreenCapture_Capture() - Width & Heigth wrong) updated by guinness
This change was introduced in Revision: 5671 because of this ticket #1446
1:50 PM Ticket #2305 (_ScreenCapture_Capture() - Width & Heigth wrong) created by KaFu
Local $iW = ($iRight - $iLeft) + 1 Local $iH = ($iBottom - $iTop) + 1 …
11:03 AM Ticket #2304 (ExitLoop new macro or out of all cycles) updated by anonymous
If you write the code then surely you know how many loop levels there are?
11:00 AM Ticket #2304 (ExitLoop new macro or out of all cycles) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
10:13 AM Ticket #2304 (ExitLoop new macro or out of all cycles) created by anonymous
it would be great if exitloop out of all nested loops! for example Do …

Jan 16, 2013:

5:47 PM Ticket #2297 (Tidy copying last line(s) of script to top of the script) updated by BrewManNH
I used the latest version in the Beta section, 2.3.0.1 and it is demonstrating the same issue. I finally tracked it down to what will cause it almost every time for me. […] When I run Tidy on this, I get 2 copies of the EndFunc line at the top of the script. It only happens when you use /rel and /sf together, I have it set that way in the tidy.ini file so it took some doing to figure out which was causing the problem. If you add more lines that have to be removed, you get more copies of the last line at the top of the script.
1:40 PM Ticket #2193 (Addition to the String UDF) closed by guinness
Completed: Added by revision [7486] in version: 3.3.9.5

Jan 15, 2013:

10:08 PM Ticket #2193 (Addition to the String UDF) updated by guinness
Owner, Status changed
9:41 PM Ticket #2295 (Help on ObjGet) closed by guinness
Fixed: Fixed by revision [7475] in version: 3.3.9.5
9:35 PM Ticket #2062 (Example text _IEFormElementGetCollection) closed by guinness
Fixed: Fixed by revision [7474] in version: 3.3.9.5
9:00 PM Ticket #2264 (Global Const $IEAU3VersionInfo in IE.au3 has incorrect version info) closed by guinness
Completed
8:49 PM Ticket #2296 (SHA2 for Crypt.au3) closed by guinness
Rejected: AutoIt supports Windows 2000 and above and thus adding these would cause more issues for very little benefit.
8:23 PM Ticket #2263 (Add CryptGenRandom Function to Crypt.au3 UDF) updated by guinness
What was the outcome of this?
7:12 PM Ticket #2301 (_GUICtrlComboBox_GetEditControl for standard combobox) closed by guinness
Rejected
7:11 PM Ticket #2301 (_GUICtrlComboBox_GetEditControl for standard combobox) updated by guinness
The example for _GUICtrlComboBox_GetComboBoxInfo already explains how to obtain this information and given the simple nature of the ComboBox UDF, there is no requirement for such a function.
2:00 PM Ticket #2303 (Ribbon) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
1:11 PM Ticket #2303 (Ribbon) created by PlayHD
I would be nice to add to AutoIt Ribbon support. Its a nice way to …
10:48 AM Ticket #2302 (@ScriptLineNumber in compiled scripts) closed by trancexx
Rejected: This was added some time ago. You probably need to install newer version of AutoIt.
2:00 AM Ticket #2302 (@ScriptLineNumber in compiled scripts) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
1:59 AM Ticket #2302 (@ScriptLineNumber in compiled scripts) created by Fulgor
For testing I put several MsgBox(0,@ScriptLineNumber , "error x") in …

Jan 14, 2013:

8:16 PM Ticket #2301 (_GUICtrlComboBox_GetEditControl for standard combobox) created by funkey
Maybe this is helpful, because ComboBoxEx has the same function […]

Jan 13, 2013:

6:51 PM Ticket #2300 ($WS_EX_MDICHILD style affects all childs created after it so they act ...) created by AoRaToS
I have noticed a weird behavior when using $WS_EX_MDICHILD. I create …
10:36 AM ButtonTextLeftJustifyBug.au3 attached to Ticket #2299 by jfregin@…
10:35 AM Ticket #2299 (GUI Button Text Left-Justify Bug) created by anonymous
When left-justify button text formatting is set, it changes text color …

Jan 10, 2013:

4:38 PM Ticket #2297 (Tidy copying last line(s) of script to top of the script) updated by Jos
Owner, Component changed
4:14 PM Ticket #2297 (Tidy copying last line(s) of script to top of the script) updated by Jos
To be able to look at this I would need: - Scriptlet to reproduce the issue. - Tidy version used. Thanks jos

Jan 9, 2013:

11:53 PM Ticket #2297 (Tidy copying last line(s) of script to top of the script) updated by guinness
Component changed
11:46 PM Ticket #2298 (Error in _WinAPI_EnumDisplayDevices) closed by guinness
Fixed: Fixed by revision [7456] in version: 3.3.9.5
9:34 AM Ticket #2298 (Error in _WinAPI_EnumDisplayDevices) created by KaFu
EnumDisplayDevices returns 0 if display device number is not valid. …

Jan 8, 2013:

6:18 PM Ticket #2297 (Tidy copying last line(s) of script to top of the script) created by BrewManNH
Occasionally when I run Tidy on a script, with or without any custom …

Dec 31, 2012:

4:38 PM Ticket #2296 (SHA2 for Crypt.au3) updated by anonymous
Replying to jNizM: > ALG_ID (Windows) > http://msdn.microsoft.com/en-us/library/windows/desktop/aa375549(v=vs.85).aspx thanks, that certainly means that MS does not support it !!!

Dec 28, 2012:

9:36 AM Ticket #2296 (SHA2 for Crypt.au3) updated by jNizM
ALG_ID (Windows) http://msdn.microsoft.com/en-us/library/windows/desktop/aa375549(v=vs.85).aspx
9:32 AM Ticket #2296 (SHA2 for Crypt.au3) updated by anonymous
any reason why SHA_224 not available in the proposal?

Dec 27, 2012:

12:36 PM Ticket #2296 (SHA2 for Crypt.au3) updated by jNizM
Windows XP with SP3: This algorithm is supported Windows XP with SP2, Windows XP with SP1, and Windows XP: This algorithm is not supported.
12:00 PM Ticket #2296 (SHA2 for Crypt.au3) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
11:48 AM Ticket #2296 (SHA2 for Crypt.au3) created by jNizM
see here: http://autoit.de/index.php?page=Thread&threadID=35302

Dec 25, 2012:

9:08 AM Ticket #2295 (Help on ObjGet) updated by trancexx
Description changed
The line with ObjEvent needs to go away from current example.

Dec 24, 2012:

12:00 PM Ticket #2295 (Help on ObjGet) updated by TicketCleanup
Version changed
Automatic ticket cleanup.
11:32 AM Ticket #2295 (Help on ObjGet) created by MvL
I had to add an empty function, to make example two work, in the help …

Dec 23, 2012:

8:49 AM Ticket #2294 (ControlGetText failing when window title happens to contain umlauts) closed by trancexx
No Bug: Your error is of semantic nature considering this works: […]
5:47 AM Ticket #2294 (ControlGetText failing when window title happens to contain umlauts) created by puujalg25@…
Sample: $Aktiivne_Suund = ControlGetText($MAINWIN,"Piiriületus", …

Dec 22, 2012:

10:30 AM Ticket #2293 (_GDIPlus_GraphicsDrawImage crashes if we dispose the bitmap.) closed by trancexx
No Bug: So you are disposing image object and then use pointer to released object to draw. Then you report bug because of the crash you get. ...I'm sorry for you waiting 4 days for developer (OMG!) response and for AutoIt not having one person with enough knowledge and capability to close this report earlier. Clearly we are doing something wrong. I'm also sure that some time from now you will say for yourself: "Oh that was embarrassing, shame on me." Btw, Your code is unrunnable.

Dec 18, 2012:

6:36 PM Ticket #2293 (_GDIPlus_GraphicsDrawImage crashes if we dispose the bitmap.) created by anonymous
[…]
Note: See TracTimeline for information about the timeline view.