Developers Jos Posted December 31, 2004 Developers Posted December 31, 2004 (edited) I still use those to do speed tests and to force the regeneration of all files (easier than deleting the html directory).Edit: Oh and how can I make it so that only 1 backup is made - they are huge <{POST_SNAPBACK}>I was thinking of modifying the All_txt2htm.au3 to enable to make SEE ALSO references for the UDF's to buildin functions which is currently not possible.If you want i can put a commandlimne param in there to regenerate all or always regenerate all if you don't mind the wait....Do you mean the backups of "Table of Contents_old??.hhc" ? Edited December 31, 2004 by JdeB SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Administrators Jon Posted January 1, 2005 Author Administrators Posted January 1, 2005 (edited) Updated:http://www.autoitscript.com/autoit3/files/unstable/autoit/- Added the Const keywordI know I wasn't going to add any more features, but I decided that it would be quite a good one especially with all the GUIConstants.It works almost the same as Dim:Const $const = 10 Const $const = 10, $const2 = 20 Const Local $const = 10 Const Global $const = 10If you try and assign a value to a const you get a runtime error. Also, you can't turn an existing variable into a const. The places where I trapped attempted writes to a const are:- $var = - For $i =- Using a const as a ByRef paramI think that is all the places it can happen?Now, I just need to get the motivation to do this GUI tutorial and doc editing. Edited January 1, 2005 by Jon Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/
SumTingWong Posted January 1, 2005 Posted January 1, 2005 Updated:http://www.autoitscript.com/autoit3/files/unstable/autoit/- Added the Const keywordI know I wasn't going to add any more features, but I decided that it would be quite a good one especially with all the GUIConstants.It works almost the same as Dim:Const $const = 10 Const $const = 10, $const2 = 20 Const Local $const = 10 Const Global $const = 10If you try and assign a value to a const you get a runtime error. Also, you can't turn an existing variable into a const. The places where I trapped attempted writes to a const are:- $var = - For $i =- Using a const as a ByRef paramI think that is all the places it can happen?Now, I just need to get the motivation to do this GUI tutorial and doc editing. <{POST_SNAPBACK}>@JonThanks for adding this new feature. I know it's New Year and all and I probably sound like I am nit-picking but wouldn't it sound better to define const this way:Global Const $myglobalconst = 1 Local Const $mylocalconst = 2Cheers
Administrators Jon Posted January 1, 2005 Author Administrators Posted January 1, 2005 Updated:http://www.autoitscript.com/autoit3/files/unstable/autoit/- Added the Const keywordOpps, found a big bug and uploaded it again. Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/
Administrators Jon Posted January 1, 2005 Author Administrators Posted January 1, 2005 @JonThanks for adding this new feature. I know it's New Year and all and I probably sound like I am nit-picking but wouldn't it sound better to define const this way:Global Const $myglobalconst = 1 Local Const $mylocalconst = 2Cheers I could certainly change it to that if most people think it's better? Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/
Administrators Jon Posted January 1, 2005 Author Administrators Posted January 1, 2005 (edited) Done and uploaded. Dim Const $a, $b Cost $a, $b Local Const $a, $b Global Const $a, $b Edit: I've just updated the GUIConstants.au3 file to use the Const keyword too. Edited January 1, 2005 by Jon Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/
Chris_1013 Posted January 1, 2005 Posted January 1, 2005 Wow, I actually mentioned this on the mailing list, in the middle of some other discussion I'll accept, but it's actually got in... that's pretty cool :-)
Administrators Jon Posted January 3, 2005 Author Administrators Posted January 3, 2005 Updated:- Some GUI fixes from JP- Some doc and date.au3 fixes as reported in bug forum.I've moved the "unstable" directory to "beta". The name unstable was scaring people for no reason http://www.autoitscript.com/autoit3/files/beta/autoit/ Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/
Valik Posted January 3, 2005 Posted January 3, 2005 Updated:- Some GUI fixes from JP- Some doc and date.au3 fixes as reported in bug forum.I've moved the "unstable" directory to "beta". The name unstable was scaring people for no reason http://www.autoitscript.com/autoit3/files/beta/autoit/<{POST_SNAPBACK}>Great, now it'll be our (lack of) coding abilities that scares people instead of the name of the directory its in.
Administrators Jon Posted January 6, 2005 Author Administrators Posted January 6, 2005 http://www.autoitscript.com/autoit3/files/beta/autoit/Updated:- Misc re-draw GUI fixes - _Array.au3 bug fix- UNC FileMove fix (needs checking please) Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/
Administrators Jon Posted January 8, 2005 Author Administrators Posted January 8, 2005 Updated: - GUI Fonts flickering fixed - FileSetTime fixed - Misc GUI doc updates Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/
SlimShady Posted January 10, 2005 Posted January 10, 2005 (edited) Updated:- GUI Fonts flickering fixed- FileSetTime fixed- Misc GUI doc updates<{POST_SNAPBACK}>Yes! That solved an annoying visual bug in my script!Thank you. Edited January 10, 2005 by SlimShady
jpm Posted January 10, 2005 Posted January 10, 2005 (edited) Yes! That solved an annoying visual bug in my script!Thank you.<{POST_SNAPBACK}>you welcome You can say thanks to HighGuy Edited January 10, 2005 by jpm
HighGuy Posted January 10, 2005 Posted January 10, 2005 you welcome You can say thanks to HighGuy<{POST_SNAPBACK}>Finding a bug is one part, solving it (so quickly) in my opinion the most important! Thanks to you, Jon and the others for improving AutoIt further and further.
SumTingWong Posted January 10, 2005 Posted January 10, 2005 (edited) you guys are killing me. Every time this thread lights up, I think Jon has cut another beta... I pop in and it's just pleasantries Lar.<{POST_SNAPBACK}> Can you ban them for being too nice?Sorry, I am clogging up the thread too... Edited January 10, 2005 by pacman
Administrators Jon Posted January 10, 2005 Author Administrators Posted January 10, 2005 Minor Update - Help CSS style sheet modified for code/examples after a suggestion by josbe - A couple of reported helpfile bugs fixed - StringReplace uses @extended instead of @error for replacements Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/
Josbe Posted January 10, 2005 Posted January 10, 2005 Minor Update- Help CSS style sheet modified for code/examples after a suggestion by josbe- A couple of reported helpfile bugs fixed- StringReplace uses @extended instead of @error for replacements<{POST_SNAPBACK}>Very good. Some about StringReplace page:Returns the new string, the number of replacements performed is stored in @extended.But in the example the syntax used is '@error' not '@extended'...(please correct me if I'm wrong) AUTOIT > AutoIt docs / Beta folder - AutoIt latest beta
killaz219 Posted January 10, 2005 Posted January 10, 2005 (edited) you guys are killing me. Every time this thread lights up, I think Jon has cut another beta... I pop in and it's just pleasantries Lar.<{POST_SNAPBACK}>Same, thats why this is my first time posting in one of them.... Just a way to increase post count for some people... Edited January 10, 2005 by killaz219
Administrators Jon Posted January 12, 2005 Author Administrators Posted January 12, 2005 Updated: - Added @AutoItExe macro - Rewrote main gui reference page - Misc UDF and doc fixes I added the @AutoItExe macro as it was really bugging me when I had a script and wanted to run another script that I had to try and find out the autoit installation directory from the registry. The macro just returns the full path of the AutoIt3.exe exe that was used to run the script. Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/
jpm Posted January 12, 2005 Posted January 12, 2005 Updated:- Added @AutoItExe macro- Rewrote main gui reference page- Misc UDF and doc fixesI added the @AutoItExe macro as it was really bugging me when I had a script and wanted to run another script that I had to try and find out the autoit installation directory from the registry. The macro just returns the full path of the AutoIt3.exe exe that was used to run the script.<{POST_SNAPBACK}>I like THe @autoitexe macro thanks JON
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