Re: [Nuke-users]toggle hide output

2011-08-10 Thread Ean Carr
Not exactly... I guess you'd have to loop through dependent nodes and hide their inputs. First, select the node whose outputs you want hidden, then: for n in nuke.selectedNode().dependent(): n['hide_input'].setValue(True) -Ean On Wed, Aug 10, 2011 at 5:35 PM, mathieu arce

RE: [Nuke-users]toggle hide output

2011-08-10 Thread mathieu arce
: [Nuke-users]toggle hide output To: nuke-users@support.thefoundry.co.uk Not exactly... I guess you'd have to loop through dependent nodes and hide their inputs. First, select the node whose outputs you want hidden, then: for n in nuke.selectedNode().dependent(): n['hide_input'].setValue(True

Re: [Nuke-users]toggle hide output

2011-08-10 Thread Howard Jones
: Wednesday, 10 August 2011, 20:52 Subject: RE: [Nuke-users]toggle hide output I had thought of making a loop with the hide input knob on ; but i did not want to hide all the inputs of the nodes in order to leave a clear nodeGraph for the rest of the team. But thanks for your quick answer !! Mathieu