Timeline
Dec 20, 2014:
- 9:51 AM Ticket #2954 (latest version of scite does not show correctly) updated by
- I am using the latest Beta and changed my display to 125% but do not see the issue you see. Since you didn't provide an example scriptfile with the character you use, I can't test it with that. If you want you can try the original version of ScTE as release by Neil Hodgson to see if that has the same issue, as that is the base version I use. Jos
- 7:53 AM Ticket #2954 (latest version of scite does not show correctly) updated by
- thanks for replying,sorry for this late response the version of scite which caused this problem is 2014/8/1 build I don't think this problem is releate to specific code , it only caused programmer hard to view code line in SciTE, so I only posted snapshots of what happened, maybe you can not recognize Chinese characters ,I try to explain the problem, in attach.rar , normal.jpg and bug.jpg , I write the same code line in SciTE, normal.jpg shows the normal condition , the first parameter of InputBox is 4 chinese characters which are very clear. bug.jpg shows the error condition , you can see the first parameter and second parameter of InputBox squeese together , that's just the problem, maybe you can replicate this problem by writing any code line in SciTE. I mentioned "change view to 125%" , it is not related to SciTE, I mean to change system view of win7. in Win7 , control panel->view , you can change system view ,100% as default , 125% as medium ,150% as larger, I chose 125%, I doubt this problem is caused by this setting,although I do not test it in default 100% system view , so I'm not sure. last to mention , even in system view 125% , I used old version of SciTE (ver 2.2.7) , no such problem.
Dec 17, 2014:
- 4:43 PM Ticket #2957 (_ArraySort: help needs meaning of defaults and 2D) closed by
- Fixed: Fixed by revision [11166] in version: 3.3.13.20
- 4:42 PM Ticket #2957 (_ArraySort: help needs meaning of defaults and 2D) updated by
-
Component changed
The next release will read as follows: ###Parameters### @@ParamTable@@ $aArray Array to sort $iDescending [optional] If set to 1, sort in descending order $iStart [optional] Index of array to start sorting (default 0 = first element) $iEnd [optional] Index of array to stop sorting (default 0 = last element) $iSubItem [optional] Sub-index to sort on in 2D arrays (default 0 = first column) $iPivot [optional] Use pivot sort algorithm (default = quicksort) I think that is clear enough. M23 - 3:02 PM Ticket #2957 (_ArraySort: help needs meaning of defaults and 2D) created by
- In Parameters, "index" makes sense for 1D (vector). Help should say …
Dec 16, 2014:
- 10:04 PM Ticket #2956 (EndFunc not required in the last function of the script) closed by
- No Bug: Not so strange if you realize that a script with a single line MsgBox(...) will not complain about Exit missing. From there to regarding EOF as an implicit Exit is a small and rather logical step. Closing now.
- 8:54 PM Ticket #2956 (EndFunc not required in the last function of the script) updated by
- OK, thanks JC. Understandable behaviour, still strange…
- 9:42 AM Ticket #2956 (EndFunc not required in the last function of the script) updated by
- It seems that EOF has Exit semantics, as the following tends to demonstrate: you see only one MsgBox. […] I would classify as "No bug" since Au3Check correctly raises an error. Think of it as a feature.
Dec 15, 2014:
- 9:02 PM Ticket #2956 (EndFunc not required in the last function of the script) created by
- With this code : […] I can compile it (from the context menu) and …
- 7:20 AM Ticket #2955 (Using Is### breaks Maps passed ByRef) updated by
- jchd, I realised that last night as I went to bed - the problem happens when the Map is passed as a parameter and a copy is made. Sorry for the confusion. I will try and get a simple reproducer script working today and post it in "Dev Chat" - this needs more scrutiny that it is getting in Trac. M23
Dec 14, 2014:
- 11:46 PM Ticket #2955 (Using Is### breaks Maps passed ByRef) updated by
- M23, $mTest is not passed ByRef in the code exposed. If one changes the function into: […] then everything works as expected. But with your code, this: […] assigns Null to $sTest1.
- 7:40 PM Ticket #2955 (Using Is### breaks Maps passed ByRef) updated by
- > ... but not the one you think you have found... I don't know what sort of problem it is. There is so many things should be used together to reproduce this bug (so i can make some small changes to code and it will work correctly)... but in any way Is<KindOf> should not modify its param. > ... reference to "game" ... This script don't interact with game (only can launch process) or game server in any way. See gen_lng_validate.au3, lng_auto.au3 (this "bug" affects only "more" key) and lng\english.json for details https://bitbucket.org/SyDr/ramm/src/0d6f035cf547b66d425f91a72dda41a189e8f25d?at=no_regrets
- 7:22 PM Ticket #2955 (Using Is### breaks Maps passed ByRef) reopened by
- I now agree that there is a problem - but not the one you think you have found. I believe it happens when you pass a Map ByRef and check on the values. This example shows it clearly: […] So the bug appears to be using Is##### on a Map passed ByRef - I have amended the title. M23 P.S. By the way, I notice the reference to "game" in your script - could I gently point you to the Forum rules: http://www.autoitscript.com/forum/index.php?app=forums&module=extras§ion=boardrules
- 6:09 PM Ticket #2955 (Using Is### breaks Maps passed ByRef) updated by
- Um... Sorry... There is no problem with _Assert() at all. I trying to make a shorter example and lost problem in process. Seems that this problem is related to some non-trivial code when passing maps or sub-maps to user function without and using Is<KindOf> functions AND only if you use some specific keys. Here is a valid example (no assertion is used here): […]
- 5:21 PM Ticket #2955 (Using Is### breaks Maps passed ByRef) closed by
- No Bug
- 5:01 PM Ticket #2955 (Using Is### breaks Maps passed ByRef) updated by
- Nothing wrong with the Map itself - the problem is in way the statement is passed to the _Assert function. I am investigating further. M23 Edit: The problem arises because the 2 variables in the passed statement are Local to the WTF function and so are not recognised by the _Assert function. So the passed string is executed as a literal string and fails. You can see this happening in this example script: […] As you can see the Map contents are unchanged, but when the passed variables are not Global in scope the _Assert function fails. The basic problem is that Execute needs to recognise the variable names in the passed string as variables - and it seems that it only looks in the Global variable list. So a possible bug, but nothing to do with Maps per se I suggest that you open a new ticket that covers the failure of _Assert when passed Local variables. M23
- 12:52 PM Ticket #2955 (Using Is### breaks Maps passed ByRef) created by
- Depending on various things, some map values can be broken Shortest …
Dec 13, 2014:
- 3:58 PM Ticket #2954 (latest version of scite does not show correctly) updated by
- I have a couple of questions so I can see if I can replicate this: - Which version of SciTE are you using? - Can you post the used code in here or attach a file that shows the issue? - How do you change the view to 125%? Jos
- 5:39 AM Ticket #2954 (latest version of scite does not show correctly) created by
- the latest version of scite does not show correctly when user's os is …
Dec 11, 2014:
- 12:58 PM Ticket #2953 (Escaping from input box doesn't return @error = 1) closed by
- Rejected: Duplicate. @OP, stop making bug reports for support questions and go to our forums.
- 12:57 PM Ticket #2952 (Escaping from input box doesn't return @error = 1) closed by
- Rejected: This is not even close to a proper bug report. Go to the forum for support.
- 10:23 AM Ticket #2953 (Escaping from input box doesn't return @error = 1) updated by
-
MsgBox(0, InputBox("Escape me", "Abort this input box"), "@error=" & @error)Works fine for me.
Dec 10, 2014:
- 10:52 PM Ticket #2953 (Escaping from input box doesn't return @error = 1) created by
- Escaping or cancelling from an input box does not return the …
- 10:52 PM Ticket #2952 (Escaping from input box doesn't return @error = 1) created by
- Escaping or cancelling from an input box does not return the …
Dec 8, 2014:
- 10:21 AM Ticket #2879 (objcreate("Microsoft.Update.Session","REMOTEHOST") is not connecting ...) updated by
- Hi Guys is there any update on this as i am getting the same problem ? thanks
Dec 7, 2014:
- 6:12 AM Ticket #2936 (autoit-3.3.13.19 compiler throws error unable to write .tmp file) updated by
- as it turns out, it's the fact that I am specifying the .bin files. why the switch is still shown in help and acted on in the compiler I don't know, if it's not supported anymore.
Dec 4, 2014:
- 2:18 PM Ticket #2936 (autoit-3.3.13.19 compiler throws error unable to write .tmp file) updated by
- nope, it' not norton. norton doesn't log this with 3.3.13.19, it's a bug in the compiler. please fix.
Dec 2, 2014:
- 8:59 AM Ticket #2951 (How to automate [Internet options-Connections-Lan settings-Tick/untick ...) closed by
- Rejected: Please seek support in the forum - Trac is not the place. M23
- 8:00 AM Ticket #2951 (How to automate [Internet options-Connections-Lan settings-Tick/untick ...) updated by
-
Version changed
Automatic ticket cleanup. - 7:25 AM Ticket #2951 (How to automate [Internet options-Connections-Lan settings-Tick/untick ...) created by
- Please help me as per th subject. I didnt find any help in this.
Nov 30, 2014:
- 6:40 PM Ticket #2943 (Disabled dummy control reacts on accelerators) updated by
-
Owner, Status changed
Point made. M23 - 1:28 AM Ticket #2943 (Disabled dummy control reacts on accelerators) updated by
- Quick example: […] I guess the dummy control always should have the same behaviour as its native counterparts. That's why I reported the wrong behavior from my first example.
- 1:21 AM Ticket #2943 (Disabled dummy control reacts on accelerators) updated by
-
But I can use and work with
GUICtrlSetStateandGUICtrlGetStateon Dummy Controls without any problems o.O
Nov 28, 2014:
- 12:18 PM Ticket #2943 (Disabled dummy control reacts on accelerators) updated by
- What you are actually saying is that Dummy controls do not honour the $GUI_* states. Which does not surprise me in the slightest as I imagine that they are but a simple entry in the internal AutoIt control array, and do not exist as far as Windows is concerned so there is nothing on which Windows can apply the state. It seems to me that if you want to "disable/enable" dummy controls then you need to delete/recreate them as necessary. M23
Nov 27, 2014:
- 2:18 PM Ticket #2950 (Dircopy cannot copy own dir or subfolders on network drive) created by
- Dircopy stops while copying its own directory with subfolders or …
- 8:11 AM Ticket #2949 (ControlTreeView) updated by
-
Description changed
Your code is incomplete to be executed. Can you add how $wnd and $_LAMTreeControl are set? Thanks - 4:16 AM Ticket #2949 (ControlTreeView) created by
- Select Item selects the wrong item on a tree 7 levels deep […] …
Nov 25, 2014:
- 7:14 PM Ticket #2948 (Unable to automate downloads with download message box for IE11 ...) closed by
- No Bug
- 7:13 PM Ticket #2946 (The latest version autoit generated exe is not prompt for permission, ...) closed by
- No Bug: Visit the support forum with support questions. Jos
- 7:12 PM Ticket #2947 (Unable to automate (Save As dialog) for IE11) closed by
- No Bug: This is not the support forum. Visit http://http://www.autoitscript.com/forum for support. Jos
- 6:00 PM Ticket #2945 (Center and right justified text broken on native buttons when colours set) updated by
- Great! Amazing response time: reported and fixed in 24 hours - I look forward to the next release Thanks Alan Parry
- 5:48 PM Ticket #2946 (The latest version autoit generated exe is not prompt for permission, ...) updated by
- Can you follow writing ticket rules? I have not a cristall ball to reproduce Thanks
- 5:45 PM Ticket #2948 (Unable to automate downloads with download message box for IE11 ...) updated by
- can you follow writing ticket rule? Thanks
- 5:43 PM Ticket #2945 (Center and right justified text broken on native buttons when colours set) updated by
- I fix the problem. A fix has been sent to Jon for integration Thanks the error was due to the coloring
- 5:41 PM Ticket #2948 (Unable to automate downloads with download message box for IE11 ...) created by
- Unable to automate the download message box for IE11 &FF.
- 5:35 PM Ticket #2947 (Unable to automate (Save As dialog) for IE11) created by
- I am using the following code to download the file. It doesn't work …
- 4:31 PM Ticket #2946 (The latest version autoit generated exe is not prompt for permission, ...) created by
- when I try to run an exe generated by v3.3.12, with #reuestadmin, it …
- 2:19 PM Ticket #2936 (autoit-3.3.13.19 compiler throws error unable to write .tmp file) updated by
- norton is quarantining them heuristically.
- 2:17 PM Ticket #2936 (autoit-3.3.13.19 compiler throws error unable to write .tmp file) updated by
- no, i don't think it's my antivirus, I think autoit is broken and has been broken for 3 releases. please fix. if I had a chance to look at the source (I know I could not), then I might be able to identify the problem.
- 11:25 AM Ticket #2945 (Center and right justified text broken on native buttons when colours set) updated by
- Thanks - I think! I was was getting confused with all the cases and versions - building a table of all the cases made it much clearer for me. Its 2 problems I think: i) The Owner draw routines for native buttons that is used for coloured buttons gets the bit testing of the alignment wrong. ii) When GUICtrlSetStyle is called on a button that is owner-draw to change the alignment, the button stops being owner-draw. Thanks for looking Alan Parry
- 9:18 AM Ticket #2945 (Center and right justified text broken on native buttons when colours set) updated by
- You win the price of the better repro script. Seriously I have a look
- 2:32 AM Ticket #2944 (MsgBox timeout not working) closed by
- Fixed: Fixed by revision [11158] in version: 3.3.13.20
Nov 24, 2014:
- 7:08 PM Ticket #2945 (Center and right justified text broken on native buttons when colours set) created by
- Hi, After upgrading my scripts from 3.3.8.1 to 3.3.12.0/3.3.13.19 it …
- 6:00 PM Ticket #2944 (MsgBox timeout not working) updated by
-
Version changed
Automatic ticket cleanup. - 5:41 PM Ticket #2299 (GUI Button Text Left-Justify Bug) updated by
- Please open a new ticket, this appears to be a different problem. Also post a reproducer script that demonstrates the issue you're talking about.
- 5:28 PM Ticket #2944 (MsgBox timeout not working) updated by
-
Version, Component changed
As stated in the thread this was originally brought up in: http://www.autoitscript.com/forum/topic/165858-message-box-timeout-not-working/ This type of modal setting for a MsgBox can not have a time out in the message box command itself, it just won't work. This is a Windows issue and not an AutoIt one. I am changing this to a documentation issue for the help file rather than a bug, as it is not a bug, just a Windows limitation. - 2:14 PM Ticket #2944 (MsgBox timeout not working) created by
- Hi When I use either $MB_SERVICE_NOTIFICATION or …
- 2:13 AM Ticket #2943 (Disabled dummy control reacts on accelerators) created by
- I noticed that in previous versions (3.3.12.0) $GUI_DISABLE didn't …
Nov 23, 2014:
- 10:34 AM Ticket #2299 (GUI Button Text Left-Justify Bug) updated by
- P.S For the first issue, I wonder if AutoIt's code is being confused by the fact that BS_CENTER = BITOR(BS_LEFT, BS_RIGHT) so you can't just do simple bit tests but need to do: If BitAnd (style, $BS_CENTER) = $BS_LEFT If BitAnd (style, $BS_CENTER) = $BS_CENTER If BitAnd (style, $BS_CENTER) = $BS_RIGHT (I'm sure the above logic is absolutely obvious to you, but is easily overlooked if not thinking of the actual value of the bits) Alan Parry
- 10:15 AM Ticket #2299 (GUI Button Text Left-Justify Bug) updated by
- Hi, After upgrading my scripts from 3.3.8.1 to 3.3.12.0/3.3.13.19 it appears that center justification of native buttons has been broken. I guess most likely by the fix for this issue at milestone 3.3.9.21. The permutations of: default color settings; alignment at creation; style changes; and color changes effect the issue in different ways, and differently now compared to 3.3.8.1. I have attached a new script (ButtonTextJustify2.au3) that shows the permutations and indicates which permutations have issues. To try to summarized the issues:- 1) If default colours are used; OR the colours are changed after button creation or style change then:- a) On 3.3.12.0 and 3.3.13.19 center justification is shown as left, and right as center b) On 3.3.8.1 left and right were shown as center 2) If style is set/changed when set default colours used, or after colours have been set, then colour settings are lost but justification is correct/fixed. This second issue was also in the original bug report but seems unaltered by the last bug fix. (Note also:- Strangely after loosing set default colours with a style change, setting just the background colour restores the foreground colour as well, as can be seen in the last set of examples). Regards Alan Parry
- 8:41 AM Ticket #2942 (Extract icon's from almost any file (exe,lnk,bat,vbs,txt,......)) closed by
- Rejected
Nov 22, 2014:
- 10:34 PM Ticket #2942 (Extract icon's from almost any file (exe,lnk,bat,vbs,txt,......)) updated by
- i don't need a prog to do that the c# function works. i think this will be a nice func at autoit code that's all
- 6:18 PM Ticket #2942 (Extract icon's from almost any file (exe,lnk,bat,vbs,txt,......)) updated by
- http://www.nirsoft.net/utils/iconsext.html
- 5:00 PM Ticket #2942 (Extract icon's from almost any file (exe,lnk,bat,vbs,txt,......)) updated by
-
Version changed
Automatic ticket cleanup. - 4:58 PM Ticket #2942 (Extract icon's from almost any file (exe,lnk,bat,vbs,txt,......)) created by
- Extract icon from almost any file Can this be added to autoit as a …
Nov 20, 2014:
- 6:29 PM Ticket #2941 (Tidy doesn't find Then on a continuation line in a #Tidy_Off block) closed by
- Fixed: This is already fixed in the available beta version of Tidy. Jos
- 5:07 PM Ticket #2941 (Tidy doesn't find Then on a continuation line in a #Tidy_Off block) created by
- This :- […] causes ";### Tidy Error: If/ElseIf statement …
- 3:29 PM Ticket #2940 (_FileListToArrayRec does not return files having no extension with ...) closed by
- No Bug: See my reply in this thread: http://www.autoitscript.com/forum/topic/165777-strange-behaviour-with-filelisttoarrayrec/#entry1210635 M23
- 8:32 AM Ticket #2940 (_FileListToArrayRec does not return files having no extension with ...) created by
- In a folder with some files that have no extension (for example the …
Note:
See TracTimeline
for information about the timeline view.
