Hey everyone,
I'm bumping up this old thread because I'm not sure what's the current
'best practice' to link the format of a
checkerboard/constant/colorwheel/colorbars to the format of some other
random node that doesn't have a format knob (like, say, a Blur node).
This works:
a = nuke.toNode("SomeOtherCheckerboard")
f1 = a['format'].value()
#Get a format object using the .value() method of a format knob.
b= nuke.toNode("CheckerBoard")
b['format'].setValue(f1)
#Works fine.
This fails:
a = nuke.toNode("Blur1")
f1 = a.format()
#Get a format object using the .format() method of a Blur node.
b= nuke.toNode("CheckerBoard")
b['format'].setValue(f1)
#FAIL.Nuke pops the following error: "CheckerBoard3.format format {720 486
0 0 720 486 0.91 NTSC} not in named format list"
What am I missing here?
--Xavier Bourque
_______________________________________________
Nuke-users mailing list
[email protected], http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users