I hide inputs on postage stamps by default  but very often just want to move everything up or down to add space, so for me not moving hidden inputs is something I’m bothered with - however I think the ctrl+shift+click option seemed a neat solution to not select inputs.

Ctrl+alt makes sense for selecting downstream. You could just rip off my code and make it a separate option? Mines in  the edit menu with no short cuts.

My crappy code attached (hopefully)

def selectUpDown(direction='up', all='all'):
    sn = nuke.selectedNode()
    if all == 'connected':
        nuke.selectConnectedNodes()
    elif all == 'all':
        nuke.selectAll()
    elif all == 'unconnected':
        nuke.selectConnectedNodes()
        nuke.invertSelection()
        return


    for i in nuke.selectedNodes():
        if 'up'==direction:  
            if i['ypos'].value() > sn['ypos'].value():
                i['selected'].setValue(False)
        elif 'down'==direction:  
            if i['ypos'].value() < sn['ypos'].value():
                i['selected'].setValue(False)
        elif 'left'==direction:  
            if i['xpos'].value() > sn['xpos'].value():
                i['selected'].setValue(False)
        elif 'right'==direction:
            if i['xpos'].value() < sn['xpos'].value():
                i['selected'].setValue(False)





On 14 Apr 2015, at 21:09, Frank Harrison <fr...@thefoundry.co.uk> wrote:

Hey Howard, 

On 14 April 2015 at 09:05, Yahoo <mrhowardjo...@yahoo.com> wrote:
There are plenty of times I would want upstream nodes inc postage stamps' branches selected.
In fact I'm not sure when I wouldn't.
Even when the "hide inputs" Node option is set?
 

Also If you're changing the code maybe you could look at including, below as well which has been requested
I don't think that's applicable here, but out of interest how would you expect that to work CTRL-ALT+CLICK selects down stream nodes?
 

Howard

On 14 Apr 2015, at 08:11, Frank Harrison <fr...@thefoundry.co.uk> wrote:

Hey guys,

Yes I can see that's annoying.... and pending getting sign-off from our product designer I think I have a fix.

One question, if inputs are hidden, do you want to always ignore upstream Nodes when CTRL+Dragging?

For example another user does wants to see (not move) all Nodes connected upstream, especially via hidden-inputs. Right now which you can do this by CTRL+Clicking the down-stream Node and all upstream Nodes will be selected and highlighted. With my [tentative] fix the Nodes aren't selected, but the input arrows are shown/highlighted.

F.

On 14 April 2015 at 05:42, Sean Falcon <vfxco...@gmail.com> wrote:
Gah! Thanks Frank. 


On Apr 13, 2015, at 7:19 PM, Frank Rueter|OHUfx <fr...@ohufx.com> wrote:

there is no way.

it's been a (very) long standing feature request that this method should ignore hidden inputs and nothing has ever moved on that front unfortunately.


On 8/04/15 2:18 pm, Sean Falcon wrote:
Hi,

When you hold control and move a node, it moves the upstream nodes as well. Very helpful. However, if you have PostageStamps in that tree, it moves the PostageStamps and their inputs as well. Does anyone know if it's possible to only move the PostageStamp and not it's input?


Thanks,

Sean_______________________________________________
Nuke-users mailing list
Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users


_______________________________________________
Nuke-users mailing list
Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users



-- 
Frank Harrison
Senior Nuke Software Engineer
The Foundry

_______________________________________________
Nuke-users mailing list
Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users



-- 
Frank Harrison
Senior Nuke Software Engineer
The Foundry
Tel: +44 (0)20 7968 6828 - Fax: +44 (0)20 7930 8906 
_______________________________________________
Nuke-users mailing list
Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users

_______________________________________________
Nuke-users mailing list
Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/
http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-users

Reply via email to