Spent almost 3 weeks on this so nearly gave up.. Problem is that I want to read and write array tags like:
I have Tags numbered like: So I need to have lets say 10 tags with array size of 3 (type of INT). Then I need to loop through each of Tag and Tag index like for example:tag1[0] = 10;
Code: Select all
Globals.Tags.tagName[indx] = 10;
Code: Select all
LightweightTag tag2 = Tags.StringToTag<LightweightTag>(tagField[i].Name.ToString());
where:
sets the available Tag name.tagField.Name.ToString()
So if I try to set the value like:
Code: Select all
tag2[0].Value = 10;
Any Help will be appreciated!
Aurimas