I want to assign to an AutoItObject property without hardcoding the property name.
In Javascript it would look like:
obj['propertyName']=103;
I can read access a property using Execute:
But I cannot assign with:
Maybe AutoItObjects have a sooper-secret $obj.__set($name,$val) function?
I am looking for a workaround no matter how convoluted. Was thinking about maybe this might be feasible with a JScript COM helper, since I have built a AutoItObject ClassFactory anyhow. I would be able to create dynamic helper functions in JScript COM, that would stop me from writing:
JScript COM: