Administrators Jon Posted February 16, 2004 Author Administrators Posted February 16, 2004 Jon, did you say at one point that you'd remove the limitation that prevents '(' and ')' from being set as hotkeys?I just tried 3.0.94, and HotKeySet fails for those characters.Re-updated.
Marc Posted February 17, 2004 Posted February 17, 2004 I undo all the changes and make v3 only support DOS formatted files if everyone wants?Don't do it, Captain!I do like the changes. Getting a LF when using @LF and getting a CRLF when using @CRLF sounds much more intuitive for me than the old version With the changes to FileWriteLine / FileWrite everything is fine to me. Any of my own codes posted on the forum are free for use by others without any restriction of any kind. (WTFPL)
jpm Posted February 17, 2004 Posted February 17, 2004 Don't do it, Captain!I do like the changes. Getting a LF when using @LF and getting a CRLF when using @CRLF sounds much more intuitive for me than the old version With the changes to FileWriteLine / FileWrite everything is fine to me. I can agree with you and Jon.The only place is not working is the MsgBox where you need to use only @CR
tylo Posted February 17, 2004 Posted February 17, 2004 (edited) Great to see this @LF change at last. It was bugging me a little. Can't see any problems with msgbox. Did you see my little exercise for jon in the original thread? Edited February 17, 2004 by tylo blub
Marc Posted February 17, 2004 Posted February 17, 2004 No problems with msgbox... in fact, it even works better than expected $a = "1" & @CRLF & "2" & @CR & "3" & @LF & "4" msgbox (0, "",$a) creates 1 2 3 4 I'm happy Any of my own codes posted on the forum are free for use by others without any restriction of any kind. (WTFPL)
jpm Posted February 17, 2004 Posted February 17, 2004 Great to see this @LF change at last. It was bugging me a little. Can't see any problems with msgbox. Did you see my little exercise for jon in the original thread?My old memoryI remember fighting with @LF @CR @CRLF for message box display info.I redid a check now all are displaying the same so just forget my old memoryEVERYTHING FINE with the new @LF,@CR,@CRLF strategy
Marc Posted February 17, 2004 Posted February 17, 2004 (edited) Just stumbled over a docu glitch - in IsDeclared the example ain't right:if IsDeclared ("a") msgbox(0,"", "$a not declared") ; $a has never been assigned endif $a=1 if IsDeclared ("a") msgbox(0,"", "$a IS declared" ) ; due to previous $a=1 assignment endifFirst "if"-statement should read if isDeclared ("a") = 0or, of courseif not isDeclared ("a") Edited February 17, 2004 by Marc Any of my own codes posted on the forum are free for use by others without any restriction of any kind. (WTFPL)
Administrators Jon Posted February 17, 2004 Author Administrators Posted February 17, 2004 Updated with Valik's ToolTip() (i've altered it slightly so that if the x and y coords are not given the tip is placed near the mouse pointer). I'm going to be stuck in a hotel on business from tomorrow for weeks and weeks so my net access will be crap, so doc changes only. (oh and whatever happens with the Random() thingy)
jpm Posted February 17, 2004 Posted February 17, 2004 Just stumbled over a docu glitch - in IsDeclared the example ain't right: if IsDeclared ("a") msgbox(0,"", "$a not declared") ; $a has never been assigned endif $a=1 if IsDeclared ("a") msgbox(0,"", "$a IS declared" ) ; due to previous $a=1 assignment endif First "if"-statement should read if isDeclared ("a") = 0 or, of course if not isDeclared ("a")You rigth Marc. The then is also missing. the definition also should be "Check if a variable has been declared."
Administrators Jon Posted February 19, 2004 Author Administrators Posted February 19, 2004 Updated with crash fixes. Well I think it updated, I get a "timeout" error during FTP upload because it takes so long over dialup. So it may be corrupt. No proper net access till Friday night. Stupid hotels. Stupid job.
Administrators Jon Posted February 20, 2004 Author Administrators Posted February 20, 2004 Updated with last night's bug reports and made the progress bar header font slightly smaller.http://www.hiddensoft.com/autoit3/files/unstable/
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now