Displaying values in text node


#1

I’d like to diplay several values form different nodes in a text node, similiar to the default "frame[frame]"output

CMD+Dragging results in smth like

:nuke:knob:Merge4.mix

which will result in no result at all or in an Unknown comand error.

Any pointers, is this possible at all?


#2

default for this is the “old” TCL language

this would work for your given example

[value Merge4.mix]

or you could use als Python on this:

[python {nuke.toNode("Merge4").knob("mix").value()}]

#3

TCL did it.
Danke