Timeline
Mar 6, 2013:
- 3:59 PM Ticket #2323 (BlockInput(1) Unique Bug) created by
- BlockInput(1) works great on windows 7 and windows xp locally. If you …
Mar 4, 2013:
- 11:00 PM Ticket #2322 (Random() produces unexpected result.) updated by
-
Version changed
Automatic ticket cleanup. - 10:37 PM Ticket #2322 (Random() produces unexpected result.) updated by
-
Type changed
- 11:31 AM Ticket #2322 (Random() produces unexpected result.) updated by
- Trac tickets can be searched and this what I was pointing out. Besides, this section is for posting confirmed bugs after inquiring on the help forum. BTW, simple search there on "random bug" lists several clearly relevant threads like this recent one. Next time please post such question in the general help forum before overloading this section which is not for discussion. Thanks.
- 2:04 AM Ticket #2322 (Random() produces unexpected result.) updated by
- A simple search revealed nothing. Thanks anyway. Feel free to file under a feature request, though simply stating the expected output in the current help file would be sufficient. It's trivial to work around once you know what's happening.
Mar 3, 2013:
- 11:33 PM Ticket #2322 (Random() produces unexpected result.) updated by
- This strongly counter-intuitive behavior is by design decision and has been questionned really many times before. A simple search would have found tickets 1538, 1251, 1170, 573 and 296, all of them closed under "no bug" tag. While I consider the current behavior to be a terrible misconception I'm not in the position to change devs mind(s) on it. This ticket should now be a feature request.
- 5:49 PM Ticket #2322 (Random() produces unexpected result.) updated by
- This is documented in the beta version of the help file that if the values are the same it returns 0 and sets @error to 1. So I can't see how it could be a bug but I will leave it for a developer to decide on whether this ticket is valid.
- 12:59 PM Ticket #2322 (Random() produces unexpected result.) created by
- If the MIN and MAX values are the same number, the result should be …
Mar 2, 2013:
- 8:36 PM Ticket #2297 (Tidy copying last line(s) of script to top of the script) closed by
- Fixed: Fixed in v2.3.0.5
Feb 27, 2013:
- 3:30 PM Ticket #2321 (FileDelete() does NOT delete ADS files) created by
- FileDelete() does not delete Alternate Data Streams. Here a …
- 2:49 PM Ticket #2221 (FileDelete() @error values) updated by
- At least return a @error at all. Here a function to do the job: Func _FileDelete($sFile) $sFile = DllCall('kernel32.dll', 'int', 'DeleteFileW', 'wstr', $sFile) Return SetError(Not $sFile[0], 0, $sFile[0]) EndFunc ;==>_FileDelete
Feb 26, 2013:
- 11:10 PM Ticket #978 (Au3Info - ToolBar info - add ToolTip Text,Image Index) updated by
- 1
- 11:09 PM Ticket #1706 (GuiCtrlGetPos) updated by
- 1
- 11:09 PM Ticket #2319 (_Singleton is not working at all) updated by
- 1
- 11:08 PM Ticket #1723 (Array incorrect number of subscripts) updated by
- 1
- 11:08 PM Ticket #1723 (Array incorrect number of subscripts) updated by
- 1
- 11:08 PM Ticket #1706 (GuiCtrlGetPos) updated by
- 1
- 11:08 PM Ticket #1709 (GuiCtrlSetResizing (return previous resizing mode)) updated by
- 1
- 11:08 PM Ticket #1709 (GuiCtrlSetResizing (return previous resizing mode)) updated by
- 1
- 11:06 PM Ticket #2319 (_Singleton is not working at all) updated by
- 1
- 11:03 PM Ticket #1723 (Array incorrect number of subscripts) updated by
- 1
- 11:03 PM Ticket #1706 (GuiCtrlGetPos) updated by
- 1
- 11:03 PM Ticket #1709 (GuiCtrlSetResizing (return previous resizing mode)) updated by
- 1
- 11:03 PM Ticket #2319 (_Singleton is not working at all) updated by
- 1
- 1:30 AM Ticket #2320 (_IENavigate return values) updated by
-
Version changed
Feb 25, 2013:
- 6:47 PM Ticket #2320 (_IENavigate return values) updated by
- Upon further investigation of the _IE* functions I've found this bug to be present in the following _IE functions as well. * _IELinkClickByText * _IELinkClickByIndex * _IEImgClick * _IEFormImageClick * _IEFormSubmit * _IEBodyWriteHTML * _IEDocWriteHTML All of these functions are supposed to return -1 on a success, yet all return -1 even if there's an error in the _IELoadWait call. BTW, this bug continues in the 3.3.9.4 beta version of the _IE functions also.
- 4:00 PM Ticket #2320 (_IENavigate return values) created by
- It appears from looking at the _IENavigate function that the return …
Feb 17, 2013:
- 12:49 AM Ticket #2318 (simple _isPressed middle mouse is not working) updated by
- Please use the Forum, not Trac.
- 12:26 AM Ticket #2319 (_Singleton is not working at all) closed by
- Works For Me: The example in the help file worked under Windows 7 x64 SP1 and XP SP3. Please use the Forum if you're unclear of how to use the function.
Feb 16, 2013:
- 2:53 PM Ticket #2319 (_Singleton is not working at all) created by
- _Singleton doesn't return 0, if there are more than one instance of …
- 10:57 AM Ticket #2318 (simple _isPressed middle mouse is not working) updated by
- s/sending only up sends a release as well in this code./sending only DOWN sends a release as well in this code.
- 10:55 AM Ticket #2318 (simple _isPressed middle mouse is not working) updated by
- sending only up sends a release as well in this code. Local $hDLL = DllOpen("user32.dll") While 1 If _IsPressed("04", $hDLL) Then Send("{a down}") While _IsPressed("04", $hDLL) Sleep(2) WEnd sleep(2) EndIf WEnd
- 10:41 AM Ticket #2318 (simple _isPressed middle mouse is not working) updated by
- _isPressed is fine something is wrong with my send commands :p
- 10:24 AM Ticket #2318 (simple _isPressed middle mouse is not working) updated by
- author here i got this code from the documentation http://www.autoitscript.com/autoit3/docs/libfunctions/_IsPressed.htm #include <Misc.au3> Local $hDLL = DllOpen("user32.dll") While 1 If _IsPressed("10", $hDLL) Then ConsoleWrite("_IsPressed - Shift Key was pressed." & @CRLF) ; Wait until key is released. While _IsPressed("10", $hDLL) Sleep(250) WEnd ConsoleWrite("_IsPressed - Shift Key was released." & @CRLF) ElseIf _IsPressed("1B", $hDLL) Then MsgBox(0, "_IsPressed", "The Esc Key was pressed, therefore we will close the application.") ExitLoop EndIf Sleep(250) WEnd DllClose($hDLL)
- 10:09 AM Ticket #2318 (simple _isPressed middle mouse is not working) closed by
- No Bug
- 9:52 AM Ticket #2318 (simple _isPressed middle mouse is not working) created by
- hold middle button in notepad, only one 'a' gets pressed Local …
Feb 15, 2013:
- 3:33 PM Ticket #2317 (ObjCreate Memory Leak) created by
- According to the Helpfile. Setting any Object with a number or string …
- 2:09 PM Ticket #2316 (PowerPoint COM event handler initialization error) created by
- I'm getting this error while trying to initialize a com event handler …
Feb 14, 2013:
- 7:22 AM Ticket #2314 (Cursor Flicker - Control) updated by
- "The cursor flickers between "arrow" and "beam/carriage"." Exactly. Same switching for me.
Feb 10, 2013:
- 5:50 PM Ticket #1217 (InetGet resume ability) updated by
- Why not just adding the possibility to modify the HTTP request headers to be able to set the "range" header to download partial data. This will enable us to resume broken downloads. In other words, making the INetXXX functions a bit more flexible. Thanks for reading.
- 8:03 AM Ticket #2315 (Server 2012 @OSVersion not correct) created by
- Hi, I tried to use @OSVersion var with Server 2012, but it reports …
- 2:04 AM Ticket #2314 (Cursor Flicker - Control) updated by
- I have the same issue while moving cursor above input control. The cursor flickers between "arrow" and "beam/carriage". 3.3.8.1 Win 7 x64 Home Pro SP1
Note:
See TracTimeline
for information about the timeline view.
