Hi,
I want to print a list of tags in specific path and the first parameter in each tag.
I can read the name of each tag and want to ask how to get the first parameter?
All tags have first parameter.
This is the code of the name.
tags = system.tag.browseTags(parentPath="projectName/CM/Transmitters")
for t in tags:
print(t.name)
Thanks