How to change Tool name with script

In the scripting reference, it says to change tool name, should use TOOLS_Name property, but I have tried setattr and simply assigning a string to TOOLS_Name, nothing works.
https://forum.blackmagicdesign.com/
https://forum.blackmagicdesign.com/viewtopic.php?f=22&t=48292
comp.Background1.SetAttrs({"TOOLS_Name":"GREEN", "TOOLB_NameSet": True})
Background1:SetAttrs({TOOLS_Name="RED", TOOLB_NameSet = 1})
in python you use
CODE: SELECT ALL
comp.Background1.SetAttrs({"TOOLS_Name":"GREEN", "TOOLB_NameSet": True})
lua:
CODE: SELECT ALL
Background1:SetAttrs({TOOLS_Name="RED", TOOLB_NameSet = 1})
the secret is to set the "TOOLB_NameSet" attribute to True to change the name
Glenn Sakatch wrote:you have to ask the forum to email you with replys
There is a checkbox at the bottom of your posting page that says "notify e when a reply is posted"
I personally think it should default to on position.
Glenn