Xibalba 1 Posted July 18, 2010 Does it make any difference whatsoever if $myvar = False, $myvar2 = True is used instead of $myvar = false, $myvar2 = true ? Share this post Link to post Share on other sites
Jos 2,209 Posted July 18, 2010 Have you tried ? What were your conclusions? 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. Share this post Link to post Share on other sites
Xibalba 1 Posted July 18, 2010 Have you tried ?What were your conclusions?Of course I've tried =)I'm just wondering what is "best practice", good knowing for other languages.Also if the "incorrect syntax", should such exist, become obsolete in future versions of AutoIT - I'd like to know the correct syntax from the beginning. Share this post Link to post Share on other sites
LordBlackout 0 Posted July 18, 2010 (edited) I think that the correct syntax is the one suggested by Scite... Edited July 18, 2010 by LordBlackout Share this post Link to post Share on other sites
Jos 2,209 Posted July 18, 2010 AutoIt3 isn't case sensitive so it really is what you prefer. 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. Share this post Link to post Share on other sites
GEOSoft 67 Posted July 18, 2010 A lot of things in AutoIt don't matter but doing it properly can make the code much easier to read. I'm one of those that will not even bother reading a posted script if it's too messy. Local $sStr = "Some String", $sStr2 = "Some Other String" is much easier to read than Local $sStr="Some String",$sStr2="Some Other String" although AutoIt doesn't care if the = is surrounded by spaces and a space appears after the comma or not. GeorgeQuestion about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number.Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else."Old age and treachery will always overcome youth and skill!" Share this post Link to post Share on other sites