Re: [Nuke-users] Script_Knob.execute()

2015-07-27 Thread Frank Rueter|OHUfx
try nuke.execute() help(nuke.execute) # Result: Help on built-in function execute in module _nuke: execute(...) execute(nameOrNode, start, end, incr, views, continueOnError = False) - None. execute(nameOrNode, frameRangeSet, views, continueOnError = False) - None. Execute the named Write

Re: [Nuke-users] Script_Knob.execute()

2015-07-27 Thread Ned Wilson
Thanks Frank! nuke.execute(nuke.selectedNode(), int(nuke.root().knob(“first_frame”).value()), int(nuke.root().knob(“last_frame”).value())) That’s the ticket right there. I appreciate it! -n On Jul 27, 2015, at 2:14 PM, Frank Rueter|OHUfx fr...@ohufx.com wrote: try nuke.execute()

[Nuke-users] Script_Knob.execute()

2015-07-27 Thread Ned Wilson
Hello Nuke Users, I’m trying to find a way to get a CurveTool node to execute without prompting the user. I would like to programmatically set the frame range and have it execute based on what I have defined. Does anyone know how to do this? Script_Knob.execute() runs fine, but it prompts the