dooshorama 0 Posted July 24, 2004 does the current script length of 4095 lines apply to 1 script (.au3 file), or the entire parsed script including all the "#include"s ? any plans to increase/remove this limit? Share this post Link to post Share on other sites
Valik 478 Posted July 24, 2004 4095 characters per line. Your script can be as many lines long as you want/need. Share this post Link to post Share on other sites
pekster 0 Posted July 24, 2004 I have a related question. Do the max characters per line only count as a line in the source, or will lines joined together with the underscore character be added together for a cumulative total of 4095? [font="Optima"]"Standing in the rain, twisted and insane, we are holding onto nothing.Feeling every breath, holding no regrets, we're still looking out for something."[/font]Note: my projects are off-line until I can spend more time to make them compatable with syntax changes. Share this post Link to post Share on other sites
CyberSlug 6 Posted July 24, 2004 I have a related question. Do the max characters per line only count as a line in the source, or will lines joined together with the underscore character be added together for a cumulative total of 4095?It wouldn't be too hard to check It's 4095 characters between carriageReturns/LineFeeds.Incidentally, the limit on a string is 2,147,483,647 characters... and your script could contain a long literal string if you used the underscore-continutation. Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig! Share this post Link to post Share on other sites
pekster 0 Posted July 24, 2004 Incidentally, the limit on a string is 2,147,483,647 characters... and your script could contain a long literal string if you used the underscore-continutation.To reach that limit, you would need a source file that was at least 2 gig in uncompressed ASCII size. Just think of how long that would take to compile Oh, and you'd also need over 524,416 lines, all appended onto the previous line.Now we just need someone with several gig of RAM and a fast processor to try it out [font="Optima"]"Standing in the rain, twisted and insane, we are holding onto nothing.Feeling every breath, holding no regrets, we're still looking out for something."[/font]Note: my projects are off-line until I can spend more time to make them compatable with syntax changes. Share this post Link to post Share on other sites
dooshorama 0 Posted July 24, 2004 4095 characters per line. Your script can be as many lines long as you want/need.wow. i didn't realize i was that much of an idiot. Share this post Link to post Share on other sites
tutor2000 0 Posted July 27, 2004 wow. i didn't realize i was that much of an idiot. Welcome to my worldHalf my errors are spelingRick Only $2.00 with Resale Rights How to Block Better for Martial Artists and NonMartial Artistshttp://kirkhamsebooks.com/MartialArts/Bloc...tterEbook_m.htm Share this post Link to post Share on other sites
Jon 1,009 Posted July 27, 2004 I have a related question. Do the max characters per line only count as a line in the source, or will lines joined together with the underscore character be added together for a cumulative total of 4095?Underscored lines are merged and the final merged lined is subject to the limit IIRC. Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/ Share this post Link to post Share on other sites