Timeline
Dec 5, 2008:
- 11:19 PM Ticket #727 (Optional parameter not declared when func called via OnEventMode) created by
- This script will crash when the button is clicked with an error saying …
- 5:47 PM Ticket #726 (Statusbar not visible in a window created with $ws_popup and with a menu) closed by
- No Bug: You should always create the menu before creating any other control. Not a bug.
- 4:24 PM Ticket #726 (Statusbar not visible in a window created with $ws_popup and with a menu) created by
- I have discovered that the statusbar is not visible when a window is …
- 10:01 AM Ticket #725 (How to Search a Text in a Screen Capture from AutoIT) closed by
- No Bug: The forum is where this should be asked not bug trac
- 8:17 AM Ticket #725 (How to Search a Text in a Screen Capture from AutoIT) created by
- The application is not Windows based. So the Text on the screen is not …
Dec 4, 2008:
- 11:00 PM Ticket #724 (Add Identification of file executed) updated by
-
Version changed
Automatic ticket cleanup. - 10:12 PM Ticket #724 (Add Identification of file executed) closed by
- Rejected: Eh, your request is rather ambiguous but whatever it is can be solved in other ways.
- 8:48 PM Ticket #724 (Add Identification of file executed) created by
- Add Identification of file executed feature so that a help About type …
- 12:09 PM Ticket #720 (more GUICtrlCreateGraphic()/GUICtrlSetGraphic($GUI_GR_LINE) - ...) updated by
- Yes. Source of aditional diagonal line was missing […]
Dec 3, 2008:
- 11:37 PM Ticket #721 (_Atan2() returns wrong) updated by
- It's ok. I can live with that explanation. _Atan2() is "real" atan2 mapped to range 0 to 2pi I'll shut the fuck up. And sorry for tiring you. If I find something that I think is maybe wrong, will try to make more meaningful, less hyperbolic example(s). Of course, will not give you links that have anything to do with ISO standard. Thanks again for that DLL structure explanation you provided earlier.
- 10:52 PM Ticket #721 (_Atan2() returns wrong) updated by
- Did you bother to read the part on the Wikipedia page where it mentions how to convert from the range -π,π to 0,2π? I can see uses for both ranges and I don't think that either range is wrong. What I do think is that you are so accustomed to using one range that you fail to accept that just maybe other people use another range. And you seem so stuck on this point that you refuse to acknowledge that both values represent the same angle. Here's a thought. Shut the fuck up because I'm tired of arguing with you. Your hyperbolic example makes no sense. You ignore the little blurb on Wikipedia which seems to imply that 0,2π is a valid and normal range and your other link is to something that's completely irrelevant to AutoIt. Comparing AutoIt to anything else is inviting me to flame the living shit out of you for not realizing that we did things our way and not some other way just because. Lastly, as for David and the choice he made, I'm fairly inclined to think a C++ professor is well aware of a conscious decision to deviate his version of Atan2 from the behavior in C\C++ and most other languages. And even if it wasn't intentional, guess what, it's not getting changed. You are the only person who has complained. The value's returned are equivalent and if you need them converted to something else, convert them. I'm certainly not going to let scripts get broken just because one person can't accept that a function doesn't behave how he wants it to.
- 10:52 PM Ticket #720 (more GUICtrlCreateGraphic()/GUICtrlSetGraphic($GUI_GR_LINE) - ...) updated by
- use 0x00FF00 for $2 and $3 you will see that the color is not OK. I agree is not related with the ticket
- 10:19 PM Ticket #721 (_Atan2() returns wrong) updated by
- Definition of atan2 is very precise, like any other math function. atan2(-1, -3) is -2.8198420991932 That would be like you said "If adding two numbers returns their difference its wrong to say that that is not adding" (this is obviously taking it to the edge). Definition of atan2 , wiki link: http://en.wikipedia.org/wiki/Atan2 And The Open Group thing: http://www.opengroup.org/onlinepubs/000095399/functions/atan2.html Check latter please Consult the author of the function. He would have to agree if _Atan2() is atan2.
- 9:27 PM Ticket #721 (_Atan2() returns wrong) updated by
- I don't think you are correct in stating that it can not be called Atan2 just because it doesn't return what you want. The range can either be -π,π or 0,2π. It's the same thing expressed two different ways. The choice David made was to express the values as 0,2π and you want to express them as -π,π. So convert - subtract 2π from any value > π and you have what you are looking for.
- 8:01 PM Ticket #721 (_Atan2() returns wrong) updated by
- sorry for anonymous thing trancexx wrote that
- 8:00 PM Ticket #721 (_Atan2() returns wrong) updated by
- The whole point of function atan2 in mathematics is to be able to return negative. Range of results should be between -pi and pi, othervise it cannot be called atan2 (_Atan2() in this case). Check C function. Deceptive function name.
- 6:58 PM Ticket #720 (more GUICtrlCreateGraphic()/GUICtrlSetGraphic($GUI_GR_LINE) - ...) closed by
- No Bug: This code works for me and basically implements what JP says into a function. There are no weird drawing artifacts with this code: […] JP, I don't see any issues with the code I have posted. I corrected an issue where the vertical lines were not being drawn straight (using an x-coordinate of 1 instead of 0). Other than that, I can't see anything wrong with my corrected example. At any rate, I'm going to close this ticket. There's no bug in what the ticket describes so if you have found something else make a new ticket and/or just fix it.
- 6:42 PM Ticket #719 (Problem with GuiCtrlCreateGraph) closed by
- Duplicate: Closing at a duplicate of #720 which has more comments.
- 6:39 PM Ticket #721 (_Atan2() returns wrong) closed by
- No Bug: The code is correct. The angles returned are always going to be positive. If you'll notice, the value you get from _Atan2() - 360 = the value you are after. So, you need to write a thin wrapper that determines the direction and re-calculates the value since _Atan2() will always return the positive angle.
- 6:30 PM Ticket #723 (Structure problem) updated by
- Briliant and simple explanation. ...and if I set data manually (like copying from one structure to another) problem cannot occure because it's filled 8 and 8 and 8... Thanks!
- 5:47 PM Ticket #723 (Structure problem) updated by
- Ooops, here's the memory layout expressed in a fixed-width font so you may see the mapping. […]
- 5:44 PM Ticket #722 (Execute will crash when using a string with spaces.) closed by
- Duplicate: Duplicate #402.
- 5:43 PM Ticket #723 (Structure problem) closed by
- No Bug: The code is correct. The helpfile almost explains why with this line: > DllStructCreate("short;int") ; structure is 8 bytes, the "int" is at offset 4 The key there is, the int (dword in your example) starts at byte 4 (0-index) and not at byte 2 like you are thinking. So, we have the data 0x3378FF453D1133. The 0x3378FF45 portion is mapped to the short but only the first 2 bytes are accessible (0x3378). The 0xFF45 portion is mapped to the 2 bytes of padding that appears between the short and the dword. That means that the dword is 0x3D113300. Visually it looks like: 3378FF453D113300 (Extra 00's added to pad length for clarity). SSSSPPPPDDDDDDDD (Where S = short, P = padding and D = dword). When you start changing the alignment, you remove the padding and the structures align correctly. This is not a bug.
- 5:18 PM Ticket #723 (Structure problem) created by
- Unexpected behaviour with function DllStructureCreate()when created …
- 5:09 PM Ticket #722 (Execute will crash when using a string with spaces.) updated by
- oh and the exception details were as follows : Unhandled exception at 0x00411c63 in AutoIt3.exe: 0xC0000005: Access violation reading location 0xffffffff.
- 5:06 PM Ticket #722 (Execute will crash when using a string with spaces.) created by
- ok bit of background - we had scripts that would read in variables …
- 4:49 PM Ticket #721 (_Atan2() returns wrong) created by
- It's function from Math.au3 Returns wrong for points located in third …
- 4:01 PM Ticket #720 (more GUICtrlCreateGraphic()/GUICtrlSetGraphic($GUI_GR_LINE) - ...) updated by
- First of all to draw a line you need to define a starting point with $GUI_GR_MOVE. Second as you create the graphics dynamically you need to use $GUI_GR_REFRESH after creation. Third is for me as the $GUI_GR_COLOR seems to introduce some discrepancy not sure what I need to do.
- 1:01 PM Ticket #720 (more GUICtrlCreateGraphic()/GUICtrlSetGraphic($GUI_GR_LINE) - ...) updated by
- Previous post is from me: Zedna (not anonymous)
- 1:00 PM Ticket #720 (more GUICtrlCreateGraphic()/GUICtrlSetGraphic($GUI_GR_LINE) - ...) created by
- According to this post: …
Dec 2, 2008:
- 10:35 PM Ticket #719 (Problem with GuiCtrlCreateGraph) created by
- I was creating a GUI that would have a border up the left side and …
- 6:12 PM Ticket #718 (Call() function claims "function doas not exist" if function was ...) updated by
- Never mind, JP already documented what I was going to.
- 6:08 PM Ticket #718 (Call() function claims "function doas not exist" if function was ...) closed by
- Rejected: No. I'm not going to add a feature that's not needed so it can be immediately abused to solve a problem in the wrong way. All I'm going to do is document that @error and @extended are set on failure to call the function. I am not going to add in a separate @error/@extended value to check a condition that is largely irrelevant. It is up to the API designer to lay forth the rules about callback functions such as the number of arguments. It is up to the callback designer to ensure their function accepts the correct number of arguments the API will be calling it with. There doesn't need to be functionality in the language to supplant proper communication/documentation.
- 11:00 AM Ticket #718 (Call() function claims "function doas not exist" if function was ...) updated by
-
Version changed
Automatic ticket cleanup. - 10:47 AM Ticket #717 (_EventLog__Report is crashing script) closed by
- Works For Me
- 10:37 AM Ticket #717 (_EventLog__Report is crashing script) updated by
- Replying to Jos: > Doesn't look you are using the UDFs from the standard installer. > This works fine for me: Thanks for your feedback. I use a copy of the AutoIt - Self Extracting Archive, no installer at all. Is there a dependency on the installer ? Due to time pressure i had to go back to a VB- Helperscript to handle eventlog.
- 10:25 AM Ticket #718 (Call() function claims "function doas not exist" if function was ...) created by
- In Beta 3.2.13.11 , if a function exists but has wrong number of …
Dec 1, 2008:
- 8:02 PM Ticket #717 (_EventLog__Report is crashing script) updated by
- Doesn't look you are using the UDFs from the standard installer. This works fine for me: […] Jos
- 11:20 AM Ticket #717 (_EventLog__Report is crashing script) created by
- AutoIT script is crashing when trying to send event to eventlog (UDF). …
- 7:56 AM Ticket #715 (Math error) updated by
- Since I found one of the threads where I explain it, here is the link.
- 7:56 AM Ticket #716 (decimal subtraction bug) updated by
- Since I found one of the threads where I explain it, here is the link.
- 7:53 AM Ticket #716 (decimal subtraction bug) closed by
- No Bug: Replying to mmavipc: > MsgBox(0,"",7.04-7 & " " & 8.04-8) > 7.04-7=0.04 > 8.04-8=0.0399999999999991 > hmm I wonder that is wrong with that Nothing is wrong with it. Just like #715, this is not a bug. Floating point numbers are not precise. There is a ton of literature on the internet about it. I've explained it countless times.
- 5:00 AM Ticket #716 (decimal subtraction bug) updated by
-
Severity changed
Automatic ticket cleanup. - 4:19 AM Ticket #716 (decimal subtraction bug) created by
- MsgBox(0,"",7.04-7 & " " & 8.04-8) 7.04-7=0.04 …
- 3:57 AM Ticket #715 (Math error) updated by
- Excuse me. I'll try to find answer in forum.
- 3:11 AM Ticket #715 (Math error) closed by
- No Bug: Replying to V23: > {{{ > ConsoleWrite(0.04 & @CRLF) > ConsoleWrite(8.04-8 & @CRLF) > }}} > > if I run this script, I'll see: > 0.04 > 0.0399999999999991 > Why? Because you touch yourself at night. Particularly when you should be asking things on the forum and NOT the issue tracker. Or better yet, search for things on the forum since I've explained this about seven thousand times. No bug.
- 2:36 AM Ticket #715 (Math error) created by
- […] if I run this script, I'll see: 0.04 0.0399999999999991 Why?
Nov 30, 2008:
- 4:39 AM Ticket #351 (Reverse PixelSearch) updated by
- Replying to haura: > When does an owner and milestone get assigned to this 6 month old request? When it's done.
- 4:31 AM Ticket #351 (Reverse PixelSearch) updated by
- When does an owner and milestone get assigned to this 6 month old request?
- 4:18 AM Ticket #712 (enhanced PixelSearch - search direction & logical mask) updated by
- See also: PixelSearch.au3 include library, enhanced search direction; logical OR & NOR pixel mask
- 4:07 AM Ticket #712 (enhanced PixelSearch - search direction & logical mask) updated by
- Your terse response was not called for. I most certainly did search for and find #351 before filing this request. #351 showed no disposition details. I suppose I must assume that #351 is not rejected but that it also has no target milestone or assigned owner for implementation. I did consider referencing #351 but decided not to because it the pixel mask element of my request is what I wished to emphasize. In future I will reference possibly related prior requests and/or submit multiple requests with a narrower focus for each one. Thank you for that piece of learning. I am sorry to read that pixel mask based searches are not within the target scope of your your planned development. I have already started on a library of my own so thank you for that suggestion.
Nov 29, 2008:
- 8:00 AM Ticket #714 (Radical(i1,i2,iN)) updated by
-
Version changed
Automatic ticket cleanup. - 6:51 AM Ticket #714 (Radical(i1,i2,iN)) created by
- What this would do would be to get the radical of all the numbers …
- 2:29 AM Ticket #711 (Combobox functions does not work properly or even at all, on Windows ...) updated by
- Well, I can agree with this explanation, but what does it mean "is not implemented on the OS you are trying to use"? I'm using on standard 2k/NT4 latest updates. I suppose it should be written in docs "Notice: It doesnt work there", but it is not.
Nov 28, 2008:
- 11:28 PM Ticket #712 (enhanced PixelSearch - search direction & logical mask) closed by
- Rejected: It's clear you didn't search the issue tracker hard enough or you would have found #351 which covers the first part of your request. As for the rest of the request, write your own. We can't possible provide something that is going to make everybody happy so we provide something basic. If you need something for complicated you can build it yourself.
- 11:25 PM Ticket #713 (FileInstall() to accept macros and environment variables.) closed by
- Rejected: While it is true those expressions are available at compile-time they are also different than the run-time counter-parts. It's just unnecessary confusion. There are better ways to solve the problem.
- 11:00 PM Ticket #713 (FileInstall() to accept macros and environment variables.) updated by
-
Version changed
Automatic ticket cleanup. - 10:53 PM Ticket #713 (FileInstall() to accept macros and environment variables.) created by
- It would be handy, if FileInstall() would accept macros and …
- 8:00 PM Ticket #712 (enhanced PixelSearch - search direction & logical mask) updated by
-
Version, Severity, Milestone changed
Automatic ticket cleanup. - 7:54 PM Ticket #712 (enhanced PixelSearch - search direction & logical mask) created by
- A) Search direction: For symmetry, support should be included for: …
- 4:37 PM Ticket #708 (ControlGetText() does not work properly.) updated by
-
Description changed
- 12:59 PM Ticket #710 (UDF for port access) closed by
- Rejected
- 2:35 AM Ticket #709 (WinGetTitle() returning '[SOH]' character, instead of title of target ...) closed by
- Fixed: It will be fixed in 3.2.13.12.
- 2:16 AM Ticket #711 (Combobox functions does not work properly or even at all, on Windows ...) closed by
- No Bug: For your first issue, it's obvious the ComboBoxEx control is not implemented on the OS you are trying to use. ComboBoxEx is not the same thing as a ComboBox. As for your second issue, read the documentation, I'll be you find your answer. Try looking at the Remarks section of GUICtrlCreateCombo(). No bugs to see here.
- 12:28 AM Ticket #711 (Combobox functions does not work properly or even at all, on Windows ...) created by
- Hello, I'll refer to two different combobox functions which …
Nov 27, 2008:
- 5:00 PM Ticket #710 (UDF for port access) updated by
-
Milestone changed
Automatic ticket cleanup. - 4:50 PM Ticket #710 (UDF for port access) created by
- In DOS I use debug to test my port. But in 2000, XP... it dosn't work
- 2:00 PM Ticket #709 (WinGetTitle() returning '[SOH]' character, instead of title of target ...) updated by
-
Severity changed
Automatic ticket cleanup. - 1:18 PM Ticket #709 (WinGetTitle() returning '[SOH]' character, instead of title of target ...) created by
- […]
- 3:53 AM Ticket #699 (Shutdown(5) Failing) updated by
- Does the user the script is running as have the ability to shut down the PC? Is the user the script running as also the interactive user?
- 3:45 AM Ticket #708 (ControlGetText() does not work properly.) closed by
- Fixed: It will be fixed in the next beta.
Nov 26, 2008:
- 7:40 PM Ticket #708 (ControlGetText() does not work properly.) created by
- ControlGetText() always returns SOH(Start of heading, Chr(1)). …
- 11:19 AM Ticket #707 (_GUICtrlMonthCal_Create) closed by
- Fixed: Fixed in version: 3.2.13.12
- 11:09 AM Ticket #707 (_GUICtrlMonthCal_Create) updated by
-
Owner, Status, Component, Severity changed
- 9:20 AM Ticket #707 (_GUICtrlMonthCal_Create) created by
- Ex.1 [autoit] #include <GUIConstantsEx.au3> #include <GuiMonthCal.au3> …
Nov 25, 2008:
- 11:41 PM Ticket #697 (Process Close Randomly Not Working) updated by
- Replying to kjcdude@…: > The bug that i have found is reproducible. As i stated it's random. Is it random or is it reproduceable? It can't be both. It can't be random, either, because nothing in computers is random. But it might be under some incredibly obscure circumstance. Without knowing what that circumstance is there is nothing that can be done to remedy it. > ProcessClose("Gw.exe") works within v3.2.13.10 and earlier, but not with v3.2.13.11. Nothing was changed between those two versions that would affect ProcessClose().
- 11:07 PM Ticket #697 (Process Close Randomly Not Working) updated by
- The bug that i have found is reproducible. As i stated it's random. ProcessClose("Gw.exe") works within v3.2.13.10 and earlier, but not with v3.2.13.11. It's a very simple error that I'm encountering and i have provided all the information i have. Sorry for wasting your time.
- 11:03 PM Ticket #699 (Shutdown(5) Failing) updated by
- No problem. I meant force shutdown, not restart. Windows XP Home SP2
- 9:55 PM Ticket #354 (Transparency with images) updated by
-
Description changed
- 12:04 PM Ticket #341 (Extend TraySetIcon() undocumented keywords) closed by
- Rejected: I agree that the undocumented behavior should be documented and will be in next beta. But I don't want that the pause icon can be set when the script is running. So I will close this request as rejected.
Nov 24, 2008:
- 6:11 PM Ticket #706 (Ability to read QWidget Controls would be nice to have) closed by
- Rejected: You already knew the answer before you posted.
- 2:00 PM Ticket #706 (Ability to read QWidget Controls would be nice to have) updated by
-
Version changed
Automatic ticket cleanup. - 1:37 PM Ticket #706 (Ability to read QWidget Controls would be nice to have) created by
- I tink it would be nice if you could have the ability to read the …
Nov 23, 2008:
- 11:55 PM Ticket #705 (_GUICtrlToolbar_ClickButton() function does not always click on buttons) closed by
- Fixed: Fixed in version: 3.2.13.12
- 11:09 PM Ticket #703 (_GUICtrlListBox_ClickItem() function does not always click on List Box item) closed by
- Fixed: Fixed in version: 3.2.13.12
- 9:20 PM Ticket #704 (_GUICtrlTab_ClickTab() function does not always click on tab button) updated by
- Replying to Gary: > _WinAPI_ShowCursor works fine on my XP box. > > _GUICtrlTab_ClickTab was fixed in 3.2.13.11 and does not match your version of it. Hi Gary not sure what happend there I had downloaded 3.2.13.11 but for some reason it kept my modified version of this function. I've just re-down loaded and see that you did fix the no cursor move part as well as the part I previously reported. _WinAPI_ShowCursor must be due to graphics card or something as I couldn't see anything wrong with the function. I did think that possibly the cursor was beining reenabled by internal AutoIt MouseClick function. Not an issue for me.
- 9:03 PM Ticket #700 (_GUICtrlTreeView_ClickItem() function does not always click on Tree ...) closed by
- Fixed: Fixed in version: 3.2.13.12
- 8:44 PM Ticket #701 (_GUICtrlListView_ClickItem() function does not always click on List ...) closed by
- Fixed: Fixed in version: 3.2.13.12
- 8:18 PM Ticket #702 (_GUICtrlListView_ClickItem() function does not always click on List ...) closed by
- Duplicate
- 8:17 PM Ticket #704 (_GUICtrlTab_ClickTab() function does not always click on tab button) closed by
- No Bug: _WinAPI_ShowCursor works fine on my XP box. _GUICtrlTab_ClickTab was fixed in 3.2.13.11 and does not match your version of it.
- 8:02 PM Ticket #705 (_GUICtrlToolbar_ClickButton() function does not always click on buttons) created by
- Enviroment: WinXP Home SP3 AutoIt 3.2.12.1 AutoIt Beta 3.2.13.11 …
- 7:56 PM Ticket #704 (_GUICtrlTab_ClickTab() function does not always click on tab button) created by
- Enviroment: WinXP Home SP3 AutoIt 3.2.12.1 AutoIt Beta 3.2.13.11 …
- 7:52 PM Ticket #703 (_GUICtrlListBox_ClickItem() function does not always click on List Box item) created by
- Enviroment: WinXP Home SP3 AutoIt 3.2.12.1 AutoIt Beta 3.2.13.11 …
- 7:48 PM Ticket #702 (_GUICtrlListView_ClickItem() function does not always click on List ...) updated by
- Sorry I posted this one twice it is a duplicate of 701 please delete
- 7:45 PM Ticket #702 (_GUICtrlListView_ClickItem() function does not always click on List ...) created by
- Enviroment: Win XP Home SP3 AutoIt 3.2.12.1 AutoIt Beta …
- 7:40 PM Ticket #701 (_GUICtrlListView_ClickItem() function does not always click on List ...) created by
- The coords of the centre of the item are calculated in screen coords, …
- 7:37 PM Ticket #700 (_GUICtrlTreeView_ClickItem() function does not always click on Tree ...) updated by
- I was going to attach this file GuiControlsItemClickTest.exe but it is a bit to big. It is the SampleControls.au3 from the AutoIt\Examples folder compliled and saved as GuiControlsItemClickTest.exe
- 7:10 PM Ticket #700 (_GUICtrlTreeView_ClickItem() function does not always click on Tree ...) created by
- Enviroment: Win XP Home SP3 AutoIt 3.2.12.1 AutoIt Beta …
- 6:31 PM Ticket #697 (Process Close Randomly Not Working) closed by
- No Bug: That's nice. Now, create a thread in support and talk about the issue with others who can help you. You've given no useful information at all. You've also posted code without any error checking so as far as I can tell you have no proof the code is even flowing how you think it is. At any rate, I find it unlikely this is actually a bug in AutoIt. Even if it is a bug in AutoIt, you haven't provided any information to reproduce it. So I'm closing this.
- 6:27 PM Ticket #698 (RunAs/RunAsWait Bug - Blank Passwords) closed by
- No Bug
- 11:53 AM Ticket #699 (Shutdown(5) Failing) updated by
- which OS version are they running with? When you subt a ticket you must describe the environment you encouner the trouble. Thanks
- 9:24 AM Ticket #698 (RunAs/RunAsWait Bug - Blank Passwords) updated by
- Nevermind, ran a runas from the command line. I guess microsoft locked ths down. Sorry about that.
- 8:00 AM Ticket #698 (RunAs/RunAsWait Bug - Blank Passwords) updated by
-
Severity changed
Automatic ticket cleanup. - 6:26 AM Ticket #699 (Shutdown(5) Failing) created by
- On about 1/20 of the 600 pcs i run this script on the 2nd lat line of …
- 6:24 AM Ticket #698 (RunAs/RunAsWait Bug - Blank Passwords) created by
- A user posted a question in support and I confirmed the behavior. It …
- 2:45 AM Ticket #697 (Process Close Randomly Not Working) created by
- I run my scripts on over 600 PCs and have been running this portion of …
Nov 22, 2008:
- 5:00 PM Ticket #692 (Tidy crashes on long lines) updated by
-
Milestone changed
Automatic ticket cleanup. - 2:51 PM Ticket #692 (Tidy crashes on long lines) closed by
- Fixed: Fixed in v 2.0.24.1 available now in the Beta directory. Jos
Nov 21, 2008:
- 8:04 PM Ticket #696 (Autoit Vista 64bit) closed by
- No Bug: This isn't related to AutoIt. This should have been asked on the forum.
- 7:37 PM Ticket #696 (Autoit Vista 64bit) created by
- Running Vista Ent 64bit. Newest autoit and SciTE. Also tryed older …
Nov 20, 2008:
- 9:58 PM Ticket #695 (FileMove returns an error code of 0 for failure AND for success) closed by
- No Bug: Yeah, just found your thread on the forum. Learn to read.
- 9:55 PM Ticket #695 (FileMove returns an error code of 0 for failure AND for success) updated by
- Prove it.
- 9:41 PM Ticket #695 (FileMove returns an error code of 0 for failure AND for success) created by
- A successful FileMove returns an error code of 0 (failure)
- 12:11 AM Ticket #680 (Listview and image background problem) closed by
- No Bug
Nov 19, 2008:
- 11:55 PM Ticket #694 (_SQLite_FetchNames) closed by
- No Bug
- 11:55 PM Ticket #690 (Problems with Run and chkdsk) closed by
- No Bug: There's no bug here. You're running the code from SciTE or another editor. Editors change the behavior of using STDIO redirection. Run the script compiled and it will work correctly, aside from some obvious issues in the code itself (Hint: Just because the process ends doesn't mean there's not data to read). Anyway, no bug.
- 7:58 PM Ticket #694 (_SQLite_FetchNames) updated by
- sorry.... i deleted Sqlite3.dll from ..\Windows\system32 and then all it's ok. ..\Examples\Helpfile\_SQLite_FetchNames.au3 - it's ok now. thank you
- 4:08 PM Ticket #694 (_SQLite_FetchNames) updated by
- I run the example unser the release and the beta version both give the expected result. verify the dll you are running with perhaps with […]
- 11:00 AM Ticket #694 (_SQLite_FetchNames) updated by
-
Milestone changed
Automatic ticket cleanup. - 10:56 AM Ticket #693 (Error in _DateTimeFormat() function) closed by
- Fixed: Fixed in version: 3.2.13.12
- 10:00 AM Ticket #694 (_SQLite_FetchNames) created by
- this file don't run with 3.2.13.11: …
- 3:14 AM Ticket #690 (Problems with Run and chkdsk) updated by
-
Owner, Status, Severity changed
- 3:14 AM Ticket #693 (Error in _DateTimeFormat() function) updated by
-
Status, Severity changed
- 2:55 AM Ticket #596 (String<From/To>ASCIIArray() functions) closed by
- Completed: Changed in version: 3.2.13.12
- 2:46 AM Ticket #596 (String<From/To>ASCIIArray() functions) updated by
-
Description changed
- 12:10 AM Ticket #678 (MAX_LINESIZE confine arrays) updated by
- Thank you. You're right. There's more than one way to skin a cat! PS: Is that really an english idiom. In Germany we say "Viele Wege führen nach Rom. - Many ways lead to Rome." Where the hell did the cat came from? Alf? ;-)
Nov 18, 2008:
- 7:48 PM Ticket #693 (Error in _DateTimeFormat() function) created by
- There seems to be a typo in the source code of the _DateTimeFormat() …
- 3:32 PM Ticket #692 (Tidy crashes on long lines) created by
- Tidy crashes when one line is very long ( I think ~2000 chars) …
- 9:37 AM Ticket #50 (Handle COM Byte-Array) closed by
- Completed: Added in version: 3.2.13.12
- 1:46 AM Ticket #690 (Problems with Run and chkdsk) updated by
-
Description changed
The code worked in a previous version I take it? - 1:37 AM Ticket #691 (Not equal <> condition with OR gives wrong result) closed by
- No Bug: I suggest you look again. If $temp is equal to 7 then $temp is not equal to 1 thus the first condition in your first example is true therefore the entire statement is true. You need to be using the AND operator in the first example, not OR. No bug.
- 1:35 AM Ticket #689 (@DesktopDir macro introduces unwanted characters at times.) updated by
- Replying to Valik: > You do realize this has nothing to do with @DesktopDir, right? That all that macro does is return a string? I don't think you do know that since you don't bother to actually state what the contents of @DesktopDir are. > > Chances are, something is messing with the keyboard state. Barring that, send the characters in raw mode. This is almost certainly not a bug and even if there is a bug I can pretty much guarantee it's not with @DesktopDir. > > If either of the two comments I made are not helping then post on the forum. You need support, not a fix in AutoIt. Valik, I understand what the @ macros do, and this issue seems to actually arise when in combination with Vista, and NOT using the #RequireAdmin directive while using BlockInput(). While the error arose due to my "ignorance" of using BlockInput() without #RequireAdmin under Vista, and while these are probably rare circumstances, I figure that it would be worth reporting...then again, shouldn't this be a concern taken into consideration? I wrote a test script that opens "Notepad" and a for loop ControlSends the @DesktopDir to the text window. I put in BlockInput(1) at the beginning of the string without a #RequireAdmin, and the problem doesn't present itself under XP. Run the script under Vista, and the problem pops up randomly. So, I guess you're right, I didn't know that #RequireAdmin was needed in order to use BlockInput(), but that still leaves an issue that this "strange" combination is causing weird output from the @DesktopDir macro...which of course could be happening with other macros, but I ain't gonna check that. I guess the "bug" was not a but and should be left as closed, and I'll just figure out another way to do what I wanted it to do.
- 12:36 AM Ticket #691 (Not equal <> condition with OR gives wrong result) created by
- Not equal <> condition with OR gives wrong result. Example 1 give …
Nov 17, 2008:
- 11:59 PM Ticket #690 (Problems with Run and chkdsk) created by
- I updated to the latest Public (3.2.12.1). I've got problems with …
- 10:14 PM Ticket #687 (@Unicode) updated by
- Alright, I removed the usage of it in the example. It will be gone in 3.2.13.12.
- 9:19 PM Milestone 3.2.13.11 completed
- 8:00 PM Ticket #688 (Built-in function to compare colors) updated by
-
Version changed
Automatic ticket cleanup. - 7:51 PM Ticket #687 (@Unicode) updated by
- Fair enough for the first two points, but as of 3.2.12.10 GuiCtrlCreateDate's example still uses @Unicode. http://www.autoitscript.com/trac/autoit/ticket/496 http://www.autoitscript.com/trac/autoit/ticket/493
- 7:38 PM Ticket #689 (@DesktopDir macro introduces unwanted characters at times.) closed by
- No Bug: You do realize this has nothing to do with @DesktopDir, right? That all that macro does is return a string? I don't think you do know that since you don't bother to actually state what the contents of @DesktopDir are. Chances are, something is messing with the keyboard state. Barring that, send the characters in raw mode. This is almost certainly not a bug and even if there is a bug I can pretty much guarantee it's not with @DesktopDir. If either of the two comments I made are not helping then post on the forum. You need support, not a fix in AutoIt.
- 7:19 PM Ticket #689 (@DesktopDir macro introduces unwanted characters at times.) created by
- Under Windows Vista, the @DesktopDir macro sometimes "shifts" certain …
- 6:44 PM Ticket #663 (AU3_PixelChecksum returns 0x80000000 if more than that) closed by
- Fixed
- 6:34 PM Ticket #688 (Built-in function to compare colors) closed by
- Rejected: There's nothing built-in about it. It extracts the red, green and blue components and then it creates a high and low value for each color by adding/subtracting the shade variation. Then the test color is compared to see if it's in the calculated range. It's nothing fancy and hardly worth porting out to a function. Also, there are many other ways to compare pixels so I don't think we should provide a method. You need to write a method that works for you.
- 6:11 PM Ticket #687 (@Unicode) closed by
- No Bug: Reading the 3.2.13.10 changelog or searching the issue tracker would have yielded your answer. The macro has been removed because AutoIt is always Unicode now, we do not provide an ANSI version.
- 6:08 PM Ticket #688 (Built-in function to compare colors) created by
- PixelSearch probably already uses a built-in function in AutoIt to …
- 5:59 PM Ticket #686 (Make Application's librairy) closed by
- Rejected: The AutoItX DLL already exists for this purpose. You can not compile a script to DLL if that is what you are asking.
- 5:59 PM Ticket #685 (Add fonctionnality to Autoit) closed by
- Rejected: This request makes no sense. Closing.
- 5:11 PM Ticket #687 (@Unicode) created by
- Per the Changelog dated 16th May, 2008 - v3.2.12.0: Changed: @Unicode …
- 5:00 PM Tickets #685,686 batch updated by
-
Version, Milestone changed
Automatic ticket cleanup. - 3:49 PM Ticket #686 (Make Application's librairy) created by
- Many functions exist in Autoit or are simple but not in other language …
- 3:40 PM Ticket #685 (Add fonctionnality to Autoit) updated by
- Replying to tayoufabrice: > I need to build dll library with Autoit to use it after in DllCall, DllOpen …
- 3:39 PM Ticket #685 (Add fonctionnality to Autoit) created by
- I need to build dll library with Autoit to use it after in DllCall, …
- 11:21 AM Ticket #442 (Proposed changes to _StringAddThousandsSep()) closed by
- Completed: Changed in version: 3.2.13.11
- 10:38 AM Ticket #674 (_GUICtrlTab_ClickTab() Clicks in the wrong place when $fMove = True) closed by
- Fixed: Fixed in version: 3.2.13.11
- 2:51 AM Ticket #596 (String<From/To>ASCIIArray() functions) updated by
-
Status, Severity changed
- 2:51 AM Ticket #677 (ControlGetHandle/ControlListView on .Net Listview crashes/not working ...) updated by
-
Owner, Status, Severity changed
- 2:50 AM Ticket #674 (_GUICtrlTab_ClickTab() Clicks in the wrong place when $fMove = True) updated by
-
Status, Severity changed
- 2:50 AM Ticket #442 (Proposed changes to _StringAddThousandsSep()) updated by
-
Status, Severity changed
- 2:49 AM Ticket #663 (AU3_PixelChecksum returns 0x80000000 if more than that) updated by
-
Status, Severity changed
- 2:49 AM Ticket #680 (Listview and image background problem) updated by
-
Owner, Status, Severity changed
Replying to anonymous: > If I'm not mistaken, my example does follow the order layout of a GUI in that what comes first goes on the bottom (In layout sense); Wrong. The first control is on top. The second control is right below that. The third control is below the second and so forth. Your code creates the picture control first there-fore it is drawn over top of everything else. This is not a bug. There is nothing broken. You just do not understand how the Z-Order works. Once you understand that, you'll see that your code is written wrong for what you are trying to do. - 1:10 AM Ticket #680 (Listview and image background problem) updated by
- OK, I see your solution works...to an extent. But the problem still exists in a sense. If I'm not mistaken, my example does follow the order layout of a GUI in that what comes first goes on the bottom (In layout sense); in that logic, I shouldn't need the $GUI_ONTOP because the image comes before the listview. But besides that, the solution just isn't working for one of my listviews, the reason for this ticket. I have searched all through my script and can't pinpoint why it isn't working for that listview...so this still is a "bug" I would say. I concocted a solution that works for the one mischievous listview by cycling through highlighting the items in list right after the msgbox that is invisible to the eye, but that is only a band aid, much like the $GUI_ONTOP...I believe. The following code is a perfect example, after the msgbox appears don't press OK, scroll down once by clicking in the middle of the scroll bar, not the arrow, and you will see the same whole in the listview appear. Scroll again and it will be gone. My point being, this doesn't happen with any other control and the $GUI_ONTOP doesn't fix the root of the problem. […] As I said, I fixed my current issue, but I think this should still be looked at and fixed IMO.
Nov 16, 2008:
- 8:29 PM Ticket #684 (ShellExecute() should return ProcessId instead of 1 if all is OK.) closed by
- Rejected: The PID is not available to be returned.
- 8:00 PM Ticket #684 (ShellExecute() should return ProcessId instead of 1 if all is OK.) updated by
-
Version changed
Automatic ticket cleanup. - 6:52 PM Ticket #684 (ShellExecute() should return ProcessId instead of 1 if all is OK.) created by
- It would be easier to control the spawned process if the Pid is …
- 5:54 PM Ticket #678 (MAX_LINESIZE confine arrays) updated by
- Replying to dutCh: > Please show me another cool way to populate my array. […] There are other more clever things you can do to make the code even better.
- 4:01 PM Ticket #678 (MAX_LINESIZE confine arrays) updated by
- Sorry. No offense meant. I'm not a native English speaker. Please be indulgent with me. Maybe its about you master the complicated part, make a huge, impressive work. And this easy little detail - there is no way. I want only point out a constraint in AI and thats seems to me that there are no logical reason therefor. Please show me another cool way to populate my array. Uncool are: - I supply an extra file, open it, read it, parse it and too: - I must give a Dim befor every single array line Currently i define multiple arrays <4KB and use a for loop to process them one after another. Thank you. And let me state again: AutoIt is a cool tool!
- 7:33 AM Ticket #680 (Listview and image background problem) updated by
- The GUI controlq are created in reverse Z-ORDER. this means the Last is at the bottom of the list, the first one get control first. So you have several solutions: - create the pic at the end - use GUICtrlSetState($listview, $GUI_ONTOP) can be use before GUISetState()
- 7:26 AM Ticket #679 (FileReadLine function only read 65534 characters at a time.) closed by
- Fixed: Fixed in version: 3.2.13.11
- 5:42 AM Ticket #683 (Setting new text with _GUICtrlTab_SetItemText) closed by
- No Bug: Already fixed in beta
- 5:26 AM Ticket #683 (Setting new text with _GUICtrlTab_SetItemText) created by
- Setting text with _GUICtrlTab_SetItemText() doesn't update the …
- 5:00 AM Tickets #442,596,663,674,677,679,680 batch updated by
-
Severity changed
Automatic ticket cleanup. - 2:54 AM Ticket #442 (Proposed changes to _StringAddThousandsSep()) updated by
-
Severity changed
- 2:51 AM Ticket #596 (String<From/To>ASCIIArray() functions) updated by
-
Severity changed
- 2:51 AM Ticket #680 (Listview and image background problem) updated by
-
Severity changed
- 2:51 AM Ticket #677 (ControlGetHandle/ControlListView on .Net Listview crashes/not working ...) updated by
-
Severity changed
- 2:50 AM Ticket #663 (AU3_PixelChecksum returns 0x80000000 if more than that) updated by
-
Severity changed
- 2:50 AM Ticket #674 (_GUICtrlTab_ClickTab() Clicks in the wrong place when $fMove = True) updated by
-
Severity changed
- 2:49 AM Ticket #679 (FileReadLine function only read 65534 characters at a time.) updated by
-
Severity changed
Nov 15, 2008:
- 9:58 PM Ticket #680 (Listview and image background problem) updated by
- The listview also messes up when a column is dragged to be larger or smaller and there is an image set in the background.
- 8:00 PM Tickets #679,682 batch updated by
-
Version changed
Automatic ticket cleanup. - 6:14 PM Ticket #681 (Document 64KB line limit for FileReadLine()) updated by
-
Description changed
- 6:13 PM Ticket #681 (Document 64KB line limit for FileReadLine()) updated by
-
Description changed
- 6:13 PM Ticket #681 (Document 64KB line limit for FileReadLine()) closed by
- Duplicate: Duplicate of #679.
- 6:09 PM Ticket #679 (FileReadLine function only read 65534 characters at a time.) reopened by
- JP, you documented the wrong value.
- 6:04 PM Ticket #678 (MAX_LINESIZE confine arrays) updated by
- Wow, thanks. Now fuck off and stop using this language. Clearly you consider us complete idiots incapable of even the most basic thought. Here's a thought? Don't write your code like that. That's not the only way to create an array, you know? Or is it more convenient to bitch about problems and then insult our intelligence by implying we don't have enough knowledge to know how to not use magic numbers in our code.
- 5:52 PM Ticket #681 (Document 64KB line limit for FileReadLine()) updated by
- ...screwed up the code tags, trying again: Demo: […]
- 5:51 PM Ticket #682 (Remove 64K line limit for FileReadLine()) created by
- Ref documentation change in BugTrac #681. FileReadLine() uses a 64K …
- 5:40 PM Ticket #681 (Document 64KB line limit for FileReadLine()) created by
- Based on this support topic: FileReadLine problem read a very big …
- 2:37 PM Ticket #678 (MAX_LINESIZE confine arrays) updated by
- Replying to Valik: > AutoIt is line based. The line limit is 4096 characters per line. There is no plan to change this. Okay, AutoIt is line based. Otherwise you would need something like a preprocessor. Understandable. But why this ridiculous limit of 4KB? A PC today has one million times more RAM, not to count virtual memory!?? You define a constant for the size of a single code line. For some reason you don't like dynamic memory management. Okay. It's a design decision. Take this into account, here comes an easy solution: Supply a factor! Let the constant MAX_LINESIZE = 4096 be the default. Factor 1. And give another constant for free extensibility! :-) #define ENOUGH_RAM_FOR_ALL = 1 ;default #define MAX_LINESIZE = 4096 * ENOUGH_RAM_FOR_ALL Who needs can adjust this. No design changes are required. Easy to implement. Kicked the main limit of AutoIt! Welcome in the world of gigabyte ram!
- 1:18 PM Ticket #679 (FileReadLine function only read 65534 characters at a time.) updated by
-
Component changed
- 1:16 PM Ticket #679 (FileReadLine function only read 65534 characters at a time.) closed by
- Fixed: Fixed in version: 3.2.13.11
- 1:15 PM Ticket #679 (FileReadLine function only read 65534 characters at a time.) updated by
- You right, if you need greater line use FileRead(filename) with can return the whole file and split it yourself. I will update the doc.
- 3:08 AM Ticket #680 (Listview and image background problem) created by
- When there is an image set as the background of a GUI and a listview …
Nov 14, 2008:
- 10:52 PM Ticket #679 (FileReadLine function only read 65534 characters at a time.) updated by
- Replying to joon: > {{{ > $line = "" > For $i = 1 To 700000 > $line &= "A" > Next > FileWriteLine("test.txt",$line) > ; now reading it > $file = FileOpen("test.txt", 128) > While 1 > $line = FileReadLine($file) > If @error = -1 Then ExitLoop > ConsoleWrite("Line size: " & StringLen($line) & @LF) > Wend > FileClose($file) > }}} just need notes on helpfile on FileReadLine. I've been using AutoIt for years and never new it had that limit.
- 10:50 PM Ticket #678 (MAX_LINESIZE confine arrays) closed by
- No Bug: AutoIt is line based. The line limit is 4096 characters per line. There is no plan to change this.
- 10:16 PM Ticket #679 (FileReadLine function only read 65534 characters at a time.) created by
- […]
- 9:16 PM Ticket #678 (MAX_LINESIZE confine arrays) created by
- Please remove this unneeded restriction. I want dim arrays with size …
- 11:16 AM Ticket #675 (Bug in _Date_Time_CompareFileTime) closed by
- No Bug: The params for this function take structures to the file time, not strings to the file.
Nov 13, 2008:
- 10:45 PM Ticket #677 (ControlGetHandle/ControlListView on .Net Listview crashes/not working ...) created by
- Sample Application: …
- 6:17 AM Ticket #675 (Bug in _Date_Time_CompareFileTime) updated by
- With English same problems. Thank you.
- 6:16 AM Ticket #675 (Bug in _Date_Time_CompareFileTime) updated by
- Replying to Valik: > Based on your example code... Yeah. About that example code, where is it? For example this code also generate error(have russian chars): […]
Nov 12, 2008:
- 5:39 PM Ticket #668 (_FileGetCommonPath & _FileArrayGetCommonPath) closed by
- Rejected: Been a few days with no follow-up and I can't really see this being used for much so closing.
- 5:27 PM Ticket #675 (Bug in _Date_Time_CompareFileTime) updated by
- Based on your example code... Yeah. About that example code, where is it?
- 5:18 PM Ticket #676 (autoit(exe) exiting when reciving audio from www with bass.dll) closed by
- No Bug: Seriously? Whatever. Closing. See the forum thread for the explanation.
- 4:52 PM Ticket #676 (autoit(exe) exiting when reciving audio from www with bass.dll) created by
- This is my testcode: […] after some time the script is exiting …
- 3:08 PM Ticket #675 (Bug in _Date_Time_CompareFileTime) created by
- Have a russian message, but try translate: AutoIt v3: autoit3.exe …
Nov 11, 2008:
- 4:43 PM Ticket #673 (Wrong priority of logic operators) updated by
- A lot of languages give the AND operator higher precedence than OR. In those languages your two statements are equivalent. However, as documented in the helpfile(AutoIt -> Language Reference -> Operators), AND and OR have the same precedence thus your statement is evaluated left-to-right in the manner I have described.
- 11:46 AM Ticket #674 (_GUICtrlTab_ClickTab() Clicks in the wrong place when $fMove = True) created by
- Enviroment: Win XP Pro SP2 Autoit 3.2.12.1 Autoit 3.2.13.10 Beta …
- 10:47 AM Ticket #672 (_StringAddThousandsSep) closed by
- Duplicate: see #621
- 7:39 AM Ticket #673 (Wrong priority of logic operators) updated by
- in others languages this expression return True too that is, it is AutoIT feature?
- 7:19 AM Ticket #673 (Wrong priority of logic operators) updated by
- "True" and "False" may be any logical expressions, VBScript code […] Return True
- 6:31 AM Ticket #673 (Wrong priority of logic operators) updated by
- Just to further explain what JP said, the first expression becomes […] Which is false and that's what your first test shows. Now, your second expression becomes […] because we've already established "True And False" is False. So, now that the Or operate is in play and True is part of the expression, the result is True. Thus, as JP says, this is not a bug.
- 5:54 AM Ticket #673 (Wrong priority of logic operators) closed by
- No Bug: your expressions are not equivalent as they are executed left to right the first is (True or True) and False No BUG
- 4:32 AM Ticket #673 (Wrong priority of logic operators) created by
- […] return False, but equivalent expression […] return True
- 4:01 AM Ticket #672 (_StringAddThousandsSep) created by
- _StringAddThousandsSep(-10) returns 10, should be prefixed with …
Nov 10, 2008:
- 3:39 AM Ticket #671 (Hard crash when using $WS_EX_MDICHILD) closed by
- Fixed: Fixed in version: 3.2.13.11
Nov 9, 2008:
- 11:58 PM Ticket #671 (Hard crash when using $WS_EX_MDICHILD) created by
- This simple example bellow should reproduce a hard crash of the …
Nov 8, 2008:
- 7:21 PM Ticket #662 (ListView setting $LVS_EX_FLATSB flattens header only instead of scrollbars) closed by
- No Bug: This is not a bug. Flat scrollbars are not supported when using comctl32.dll 6.00 which is what AutoIt uses on Windows XP.
- 7:00 PM Ticket #659 (FileSelectFolder does not return full path is selecting a network ...) closed by
- Fixed: Fixed in version: 3.2.13.11
- 6:56 PM Ticket #669 (Bad description) closed by
- Fixed: Fixed in version: 3.2.13.11
- 5:48 PM Ticket #670 (Listviews with checkboxes doesn't work "properly"....in my opinion) closed by
- No Bug: Replying to anonymous: > I'm too lazy right now to take apart my code to show an example, so hopefully what I say is understandable. For me personally, this was automatic ticket closing. If you are too lazy to provide all the information necessary then don't bother posting. > I set up a listview in conjunction with a WM_Notify function. When the CELL of the checkbox is clicked, it registers but the box isn't checked, which throws off my function. I believe that if the surrounding cell is clicked the checkbox should be checked as well. If this is not a "bug" I think this should be how it functions...unless there is a specific reason why it isn't like that. It's not designed like that, obviously. At any rate, you already wrote a WM_NOTIFY handler, so what exactly is stopping you from implementing the behavior you want? No bug here and there's nothing for us to add.
- 5:36 PM Ticket #667 (Forum, opening (preview-linked) Image window to small.) updated by
- yea whatever.
- 2:00 PM Ticket #669 (Bad description) updated by
-
Milestone changed
Automatic ticket cleanup. - 1:23 PM Ticket #670 (Listviews with checkboxes doesn't work "properly"....in my opinion) created by
- I'm too lazy right now to take apart my code to show an example, so …
- 1:10 PM Ticket #669 (Bad description) created by
- Description from help file of function Dec()example is wrong. […] …
- 10:51 AM Milestone 3.2.13.10 completed
Nov 7, 2008:
- 11:31 PM Ticket #663 (AU3_PixelChecksum returns 0x80000000 if more than that) updated by
- Replying to anonymous: > Replying to Valik: > > The value that's returned is supposed to be unsigned but AutoItX is returning it signed. That needs to be corrected at which point it should also fix your issue as the code is identical except for the thin COM layer. > Any idea when this will be fixed? While my automation doesn't need it RIGHT now, it'll be needed sometime soon in the coding process No longer a rush on this, I locked down some memory addresses that let me know when to click where.
- 8:00 PM Ticket #668 (_FileGetCommonPath & _FileArrayGetCommonPath) updated by
-
Version, Milestone changed
Automatic ticket cleanup. - 7:11 PM Ticket #668 (_FileGetCommonPath & _FileArrayGetCommonPath) updated by
- What would you use this for? A practical example, I mean, I understand the concept. I'm having a hard time seeing a general use for this.
- 6:13 PM Ticket #668 (_FileGetCommonPath & _FileArrayGetCommonPath) created by
- _FileGetCommonPath & _FileArrayGetCommonPath ProgAndy has created …
- 12:47 AM Ticket #667 (Forum, opening (preview-linked) Image window to small.) closed by
- Wont Fix: We did not write the forum software. If you have issues with it, report them to IPB, not us.
- 12:32 AM Ticket #667 (Forum, opening (preview-linked) Image window to small.) created by
- There is no real report section for Website/Forum issues. So dropping …
Nov 6, 2008:
- 11:19 PM Ticket #651 (FileFindFirstFile FileFindNextFile _FileListToArray not support ...) closed by
- No Bug: Closing due to lack of information.
- 11:18 PM Ticket #657 (_IECreate brings up Outlook Express instead of Internet Explorer) closed by
- No Bug: Closing due to lack of information.
- 11:18 PM Ticket #659 (FileSelectFolder does not return full path is selecting a network ...) updated by
- I think we need to document that the FileSelectFolder() dialog does not return UNC paths.
- 11:17 PM Ticket #350 (FileInstall fails when user login name is non-English chars) closed by
- Rejected: We can't find anything wrong in our code and we can't reproduce it. We apparently already changed the code Jon had in mind so closing.
- 11:15 PM Ticket #615 (License needs fixed) closed by
- Fixed: Jon has fixed this and it will appear in the next beta version.
- 9:25 PM Ticket #665 (_GUICtrlListView_SetColumnWidth et al. lack proper typecasting in ...) closed by
- No Bug: if you are passing a string you need cast the type.
- 7:19 PM Ticket #664 (SciTE Magnifying (Zooming) doesn't properly update horizontal scrollbar) closed by
- No Bug
- 7:18 PM Ticket #664 (SciTE Magnifying (Zooming) doesn't properly update horizontal scrollbar) updated by
- We use the standard distribution done by Neil Hodgson as the base of our SciTE4AutoIt3 and only maintain the additions, mainly LUA scripts. I have no intention to start to do more work on bug fixing for SciTE. As to the "Need to change au3.properties: BETA_AUTOIT =0" message. This is correct and normally only show one time when it was successful. it will again give one message after AutoIt3 Beta was installed. This is not a bug but a feature. Jos
- 6:17 PM Ticket #666 (Ability to wait on a Mutex) closed by
- Rejected: DllCall() and the Windows API mutex/object related functions can do it.
- 6:00 PM Ticket #666 (Ability to wait on a Mutex) updated by
-
Version changed
Automatic ticket cleanup. - 5:54 PM Ticket #666 (Ability to wait on a Mutex) created by
- When performing uninstalls, the recommended way to wait for the …
- 4:01 PM Ticket #664 (SciTE Magnifying (Zooming) doesn't properly update horizontal scrollbar) updated by
- It's pretty much useless to post more than one issue per ticket. Don't do it. However, 2 of your issues don't belong on the issue tracker anyway (the last two). As for the scrollbar issue, I don't see it. Everything works fine for me using a custom built version of SciTE from the same source as SciTE4AutoIt. It could be the Lua script as my scripts are a little different. Lastly, have you tried doing what the error message you find so scary says? I imagine if you open au3.properties you will find a line like: […] And that message is telling you to change that to: […]
- 3:18 PM Ticket #665 (_GUICtrlListView_SetColumnWidth et al. lack proper typecasting in ...) created by
- Bug: _GUICtrlListView_SetColumnWidth et al. lack proper typecasting in …
- 1:34 PM Ticket #664 (SciTE Magnifying (Zooming) doesn't properly update horizontal scrollbar) created by
- Using SciTE 1.77 full package from 2-11-2008 SciTE4AutoIt3.exe …
- 7:01 AM Ticket #663 (AU3_PixelChecksum returns 0x80000000 if more than that) updated by
- Replying to Valik: > The value that's returned is supposed to be unsigned but AutoItX is returning it signed. That needs to be corrected at which point it should also fix your issue as the code is identical except for the thin COM layer. Any idea when this will be fixed? While my automation doesn't need it RIGHT now, it'll be needed sometime soon in the coding process
- 5:56 AM Ticket #663 (AU3_PixelChecksum returns 0x80000000 if more than that) updated by
- The value that's returned is supposed to be unsigned but AutoItX is returning it signed. That needs to be corrected at which point it should also fix your issue as the code is identical except for the thin COM layer.
- 4:34 AM Ticket #663 (AU3_PixelChecksum returns 0x80000000 if more than that) created by
- While making a c++ program to automate something, I ran into this …
Nov 5, 2008:
- 8:43 PM Ticket #662 (ListView setting $LVS_EX_FLATSB flattens header only instead of scrollbars) created by
- Bug in AutoIt Version: 3.2.12.1 ListView setting $LVS_EX_FLATSB …
- 6:54 PM Ticket #661 (Disable "Beep" using MsgBox) updated by
- If sutable for you Flag=32 avoid beep
- 3:15 PM Ticket #660 (Unicode version for Au3Check) closed by
- Rejected: Replying to Manadar: > Unless it is too much of a hassle, can we get a version of Au3Check that is updated for the new millenium? Any time you try to port a non-UNICODE program to UNICODE it's a hassle. Au3Check would need to be re-written. If it's ever re-written then UNICODE support is likely going to come for free since chances are it would be written in a more traditional manner.
- 3:13 PM Ticket #661 (Disable "Beep" using MsgBox) closed by
- Rejected: Changed to a feature request and rejected. The point of a message box is to get the user's attention. If you are finding it annoying then you're probably using it wrong. Otherwise, all I can say is turn down your volume. we certainly aren't going to attempt to circumvent the features of a standard API call in Windows.
- 11:52 AM Ticket #661 (Disable "Beep" using MsgBox) updated by
- Sorry - guys! That's no bug, but a feature request! I'm not able to change that - sorry. ED14
- 11:47 AM Ticket #661 (Disable "Beep" using MsgBox) created by
- Is there a possibility to disable the nerving BEEP when …
- 12:00 AM Ticket #660 (Unicode version for Au3Check) updated by
-
Version changed
Automatic ticket cleanup.
Note:
See TracTimeline
for information about the timeline view.
