Hello Everyone,
Is it possible to create multiple string plugs on a node using a loop expression? I want to add each AOV filename path into the `ArnoldRender` node's Deadline settings using plug names like `OutputDirectory1`, `OutputDirectory2`, `OutputDirectory3`, and so on.
For example below snippet can be executed from python editor but .addChild is not available in the expression node
```
plug_name = 'OutputDirectory1'
plug_value = '/aov1/output/path/filename.ext'
root["ArnoldRender"]["dispatcher"]["deadline"]["deadlineSettings"].addChild( Gaffer.NameValuePlug( plug_name, Gaffer.StringPlug( "value", defaultValue = plug_value, flags = Gaffer.Plug.Flags.Default | Gaffer.Plug.Flags.Dynamic, ), True, "internalName", Gaffer.Plug.Flags.Default | Gaffer.Plug.Flags.Dynamic ) )
Thanks,
Sudarshan
```