dooshorama Posted July 24, 2004 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?
Valik Posted July 24, 2004 Posted July 24, 2004 4095 characters per line. Your script can be as many lines long as you want/need.
pekster Posted July 24, 2004 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.
CyberSlug Posted July 24, 2004 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!
pekster Posted July 24, 2004 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.
dooshorama Posted July 24, 2004 Author 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.
tutor2000 Posted July 27, 2004 Posted July 27, 2004 wow. i didn't realize i was that much of an idiot. Welcome to my worldHalf my errors are spelingRick
Administrators Jon Posted July 27, 2004 Administrators 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/
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