Solved
Forum Discussion
Marsha_R
Champion Level 3
10 years agoWe did something similar, but we built a string out of the known part of the object (Aliases["LocationManager"] etc.) and added the variable to the end, then changed that to the object with eval
for example (with your alias string shortened):
set a string variable
MyCropString = "TextblockCorn"
set an object variable
MyObjectString = eval("Aliases["LocationManager"]" + Project.Variables.MyCropString)
- cbahn00110 years agoOccasional Contributor
Thanks Marsha_R this worked great for what I was trying to accomplish.