I have some script in a project that I inherited that looks like this:
ipAddress = system.tag.readBlocking(["[System]Client/Network/Hostname"])[0].value
if ipAddress == "CP-454E90":
system.tag.writeBlocking(["[client]ProductionLineSelection","[client]disableDropDown"],[1,1])
elif ipAddress == "CP-454E92":
system.tag.writeBlocking(["[client]ProductionLineSelection","[client]disableDropDown"],[2,1])
else:
system.tag.writeBlocking(["[client]ProductionLineSelection","[client]disableDropDown"],[2,0])
I can’t find any tags named ProductionLineSelection or disableDropDown. I thought the [client] portion of the tag meant that this was a System/Client tag, but it’s not. If I do a Find, for either one of these tags, the only place they’re found is in this script.
What’s going on here? Some artifact? Something else?