van_renier Posted March 2, 2006 Posted March 2, 2006 In the past, I've seen some script snippets that appear to have multiple variables strung together using a dot/period. What is the reason for this, why would I use it, and how do I asisng them? I used to use the periods as a demiliter (like a space) in older versions of Au3, but can't, because Au3 now interprets the variable as being the combination of 2 separate variables. What are some advantages of using this, and how would I go about using (assigning/references/clearing) them (Or a weblink to a good doc on this would also do, but I would need beginner info). Thanks for your time and help. Van "Long live Auto-it!"
seandisanti Posted March 2, 2006 Posted March 2, 2006 In the past, I've seen some script snippets that appear to have multiple variables strung together using a dot/period.What is the reason for this, why would I use it, and how do I asisng them?I used to use the periods as a demiliter (like a space) in older versions of Au3, but can't, because Au3 now interprets the variable as being the combination of 2 separate variables.What are some advantages of using this, and how would I go about using (assigning/references/clearing) them (Or a weblink to a good doc on this would also do, but I would need beginner info).Thanks for your time and help.Van"Long live Auto-it!"you'll see dot notation periodically with autoit, but only when working with objects. Mainly that means COM or AutoITX. with dot notation, the term on the left side is the object, and the term on the right would be either a property, or a method(function) of the object. as AutoIT3 isn't object oriented and has no real plans to be, it's not something that comes up alot, except when using external objects.
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