Administrators Jon Posted December 1, 2004 Author Administrators Share Posted December 1, 2004 Thank you, Jon. I know you've uploaded it because I was testing an auto-update script about the time you started uploading files, so I started seeing all kinds of new files. Kind of freaked me out, I thought my date calculation algorithm was nuts.Heh, yeah.Updated with macros allowed as default parameter in user functions.And DllOpen, DllClose. Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/ Link to comment Share on other sites More sharing options...
this-is-me Posted December 1, 2004 Share Posted December 1, 2004 Does DllOpen or DllClose break any existing scripts just running DllCall without opening or closing? Who else would I be? Link to comment Share on other sites More sharing options...
jpm Posted December 1, 2004 Share Posted December 1, 2004 Heh, yeah.Updated with macros allowed as default parameter in user functions.And DllOpen, DllClose.<{POST_SNAPBACK}>I notice the TODO.txt is empty: is it a real sign(for release: :"> )? Link to comment Share on other sites More sharing options...
DaveF Posted December 1, 2004 Share Posted December 1, 2004 Does DllOpen or DllClose break any existing scripts just running DllCall without opening or closing?<{POST_SNAPBACK}>You can call DllCall() with either the DLL file name or a DLL "handle" from DllOpen() as the first parameter, per the most recent docs... Yes yes yes, there it was. Youth must go, ah yes. But youth is only being in a way like it might be an animal. No, it is not just being an animal so much as being like one of these malenky toys you viddy being sold in the streets, like little chellovecks made out of tin and with a spring inside and then a winding handle on the outside and you wind it up grrr grrr grrr and off it itties, like walking, O my brothers. But it itties in a straight line and bangs straight into things bang bang and it cannot help what it is doing. Being young is like being like one of these malenky machines. Link to comment Share on other sites More sharing options...
CyberSlug Posted December 2, 2004 Share Posted December 2, 2004 I notice the TODO.txt is empty: is it a real sign(for release: :"> )?<{POST_SNAPBACK}>Could it be: Feature freeze for the winter? Take a vacation. Release early next year? Maybe?!? Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig! Link to comment Share on other sites More sharing options...
Administrators Jon Posted December 2, 2004 Author Administrators Share Posted December 2, 2004 Could it be: Feature freeze for the winter? Take a vacation. Release early next year? Maybe?!?I just deleted the todo list in the code as it wasn't synced up with the one in this forum. No conspiracy I'm on holiday Dec 16th to Jan so I'm hoping that it will be released sometime before xmas. I'll probably be asking for some help on redoing some of the docs to be clearer. The boring stuff. Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/ Link to comment Share on other sites More sharing options...
CyberSlug Posted December 2, 2004 Share Posted December 2, 2004 I just deleted the todo list in the code as it wasn't synced up with the one in this forum. No conspiracy I'm on holiday Dec 16th to Jan so I'm hoping that it will be released sometime before xmas. I'll probably be asking for some help on redoing some of the docs to be clearer. The boring stuff.<{POST_SNAPBACK}>Doc suggestions: Break down each style list by control type; and add docs for missing control styles (such as slider controls).There are some misc things to document, too..... I'll try to help out Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig! Link to comment Share on other sites More sharing options...
SlimShady Posted December 2, 2004 Share Posted December 2, 2004 There should be an example section in the help file. So everyone can use the examples even when you're not online. I posted several examples in this forum. I'm gonna list some examples in a file with comments and upload it. Link to comment Share on other sites More sharing options...
therks Posted December 3, 2004 Share Posted December 3, 2004 (edited) Somebody broke StringSplit. The help says: "If you use a blank string "" for the delimiters, each character will be returned as an element." But if I use a blank string as the delimiter it acts as though it didn't find anything. "If no delimiters were found @error is set to 1, the count is 1 ($array[0]) and the full string is returned ($array[1])." I'd really appreciate if this could get fixed quickly as it totally broke down my script. Thanks! Edited December 3, 2004 by Saunders My AutoIt Stuff | My Github Link to comment Share on other sites More sharing options...
Lazycat Posted December 3, 2004 Share Posted December 3, 2004 (edited) Really, something wrong... StringSplit() doesn't split by empty "" string anymore. Moreover, if you use flag 1 with empty string, Autoit is freezes with 100% CPU consume. Edit: Hmm, already reported in the bugreport forum... Edited December 3, 2004 by Lazycat Koda homepage ([s]Outdated Koda homepage[/s]) (Bug Tracker)My Autoit script page ([s]Outdated mirror[/s]) Link to comment Share on other sites More sharing options...
SlimShady Posted December 3, 2004 Share Posted December 3, 2004 There should be an example section in the help file.So everyone can use the examples even when you're not online.I posted several examples in this forum.I'm gonna list some examples in a file with comments and upload it.<{POST_SNAPBACK}>Silly of me. Every function already has an example in the help file.I put my child GUI example together with my GUI template in a file.I think they would be very helpful for new users.Available http://www.autoitscript.com/fileman/users/public/SlimShady/GUI_Examples.txt. Link to comment Share on other sites More sharing options...
Nutster Posted December 3, 2004 Share Posted December 3, 2004 Really, something wrong... StringSplit() doesn't split by empty "" string anymore. Moreover, if you use flag 1 with empty string, Autoit is freezes with 100% CPU consume.Edit: Hmm, already reported in the bugreport forum...<{POST_SNAPBACK}>Oops. I guess I couldn't optimize it that way. :"> I will fix over the weekend. David NuttallNuttall Computer Consulting An Aquarius born during the Age of Aquarius AutoIt allows me to re-invent the wheel so much faster. I'm off to write a wizard, a wonderful wizard of odd... Link to comment Share on other sites More sharing options...
ezzetabi Posted December 4, 2004 Share Posted December 4, 2004 What about adding Handle() to convert strings to handles? (AFAIK it should be easy to add.) Link to comment Share on other sites More sharing options...
Valik Posted December 5, 2004 Share Posted December 5, 2004 Jon, got a silly little bug for you:Func Test($a = -1) EndFuncRun that, please. You'll see what I mean.Yes, for those who are feeling deja-vu, Au3Check also had this problem so I never actually tested that AutoIt could handle a negative parameter. Link to comment Share on other sites More sharing options...
jpm Posted December 5, 2004 Share Posted December 5, 2004 Jon, got a silly little bug for you:Func Test($a = -1) EndFuncRun that, please. You'll see what I mean.Yes, for those who are feeling deja-vu, Au3Check also had this problem so I never actually tested that AutoIt could handle a negative parameter.<{POST_SNAPBACK}>I did a fix that I upload to JON Link to comment Share on other sites More sharing options...
jpm Posted December 6, 2004 Share Posted December 6, 2004 Doc suggestions: Break down each style list by control type; and add docs for missing control styles (such as slider controls).There are some misc things to document, too..... I'll try to help out <{POST_SNAPBACK}>specify style point to the corresponding part of the appendix Slider has already been added. Just wait Jon integration. Link to comment Share on other sites More sharing options...
Administrators Jon Posted December 20, 2004 Author Administrators Share Posted December 20, 2004 (edited) Updated:http://www.autoitscript.com/autoit3/files/unstable/autoit- GUIRead renamed to GuiCtrlRead- GUISendMsg renamed to GuiCtrlSendMsg- GUIRecvMsg renamed to GuiCtrlRecvMsg- GUISendToDummy renamed to GuiCtrlSendToDummy- Various gui tweaks and fixes (no idea what, whatever JP has been replying to and fixing in the last few weeks)- Delay in mousemove reduced slightly- StringSplit fixed (blank delimiters)- Unary plus fixed- Unary operators in default values in functions. Edited December 20, 2004 by Jon Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/ Link to comment Share on other sites More sharing options...
CyberSlug Posted December 20, 2004 Share Posted December 20, 2004 GUI Refresh tweaks look good StringSplit bug(s) also fixed Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig! Link to comment Share on other sites More sharing options...
Holger Posted December 20, 2004 Share Posted December 20, 2004 (edited) Some little doc-bugs in this latest release in the GUI-functions:as return vy should be replaced with as returned by Type "vy" in the 'Search'-function of the helpfile and you will see it.So long...Holger Edited December 20, 2004 by Holger Old project:GUI/Tray menu with icons and colors Other old stuff:IconFileScanner, TriState/ThreeState GUI TreeView, GUI ContextMenu created out of a TreeView Link to comment Share on other sites More sharing options...
Administrators Jon Posted December 21, 2004 Author Administrators Share Posted December 21, 2004 (edited) Updated. - FileSelectFolder has optional initial dir - Fixed bug in Random - Docs on control related functions updated slightly. Edited December 21, 2004 by Jon Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/ Link to comment Share on other sites More sharing options...
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