Re: [Nuke-users] create read node based on menu choice

2017-03-12 Thread Darren Coombes
Thanks Frank, this would be for a tcl script button i'm assuming? what if the button was a python button? Check out some of my work... www.vimeo.com/darrencoombes Mob: +61 418 631 079 Skype: darrencoombes Twitter: @durwood81 On Mar 13, 2017, at 03:02 PM, Frank Rueter|OHUfx

Re: [Nuke-users] create read node based on menu choice

2017-03-12 Thread Frank Rueter|OHUfx
Sure. Just use something like this to generate your Read node: path/to/file/*[value NoOp1.whichsheet]*/*[value NoOp1.chooseread]* On 13/03/17 4:16 pm, Darren Coombes wrote: Thanks Frank, that lind of works for what i'm trying to do.. here's what i'm trying to do, im simpler form (all

Re: [Nuke-users] create read node based on menu choice

2017-03-12 Thread Darren Coombes
Thanks Frank, that lind of works for what i'm trying to do.. here's what i'm trying to do, im simpler form (all made on no-op). essentially, i've got a bunch of elements, then trying to select the parent directory of certain elements, then select the filename and then finally, read in said

Re: [Nuke-users] create read node based on menu choice

2017-03-12 Thread Frank Rueter|OHUfx
Try something like /home/darren/Pictures/[value myDropDownList] On 13/03/17 1:20 pm, Darren Coombes wrote: if i want to create a read node based on what is selected in a pulldown menu, how would i do that? say my menu has the following two files listed.. aura_green.png bluesky.png redball.png

[Nuke-users] create read node based on menu choice

2017-03-12 Thread Darren Coombes
if i want to create a read node based on what is selected in a pulldown menu, how would i do that? say my menu has the following two files listed.. aura_green.png bluesky.png redball.png i can create a read by adding.. nuke.nodes.Read(file="/home/darren/Pictures/aura_green.png") which only

Re: [Nuke-users] linking expression to pulldown choice

2017-03-12 Thread John RA Benson
Turn it into a value: [value WIPECONTROL.wipe_duration] jrab > On Mar 12, 2017, at 10:48 PM, Darren Coombes wrote: > > say i have a pulldown choice menu, and i have each line in the pulldown as a > number, depicting amount of frames. > > 06 > 12 > 18 > 40 > 60 > >

[Nuke-users] Nuke callbacks to specific nodes

2017-03-12 Thread Michael Hodges
How do I reference specific nodes in a callback? I’ve gotten as far as selecting specific nodes but I’m a little confused at how I’m actually referencing actual knobs in these nodes. I feel like it should be with a "nuke.thisNode()” type approach but I can’t seem to get it working. Is this the

[Nuke-users] linking expression to pulldown choice

2017-03-12 Thread Darren Coombes
say i have a pulldown choice menu, and i have each line in the pulldown as a number, depicting amount of frames. 06 12 18 40 60 how would i link the value of an integer knob to be whatever choice is selected in the menu? the menu is called wipe_duration if i just put wipe_duration in