cppman Posted March 27, 2006 Posted March 27, 2006 (edited) _ArrayCreate(1, 2, 3, 4, 5, 6_ 7, 8, 9, 10, 11_ 12, 13, 14, 15, 16) what is the '_'? because every time i run a script from someone else that has that, it never works.. im sure it is to continue the same line of code on seperate lines... but am not sure how to use it? how do i use it? Edited March 27, 2006 by CHRIS95219 Miva OS Project
Moderators SmOke_N Posted March 27, 2006 Moderators Posted March 27, 2006 I have always wondered what this is: _ArrayCreate(1, 2, 3, 4, 5, 6_ 7, 8, 9, 10, 11_ 12, 13, 14, 15, 16) what is the '_'? because every time i run a script from someone else that has that, it never works.. im sure it is to continue the same line of code on seperate lines... but am not sure how to use it? how do i use it?There should be a space from the last character: 6 _ (notice the space) 11 _ not 6_ / 11_, it's an option that allows you to continue on the next line in case your code gets extra long . Example:MsgBox(0, 'Test', "I think it comes in handy" & @CR & _ "To know trivial things") Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
cppman Posted March 27, 2006 Author Posted March 27, 2006 There should be a space from the last character: 6 _ (notice the space) 11 _ not 6_ / 11_, it's an option that allows you to continue on the next line in case your code gets extra long . Example:MsgBox(0, 'Test', "I think it comes in handy" & @CR & _ "To know trivial things")yeah. thanks, i finnaly found it in the help file.. Miva OS Project
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