BasHe
03-15-2010, 09:00 AM
hi,
I have been trying to get the read node to reload with a python command. Sofar I have tried setting the `last` and `version` attributes, which with the gui would trigger a reload. The values are being updated just fine, but there`s no reload of the node. The reason I want to do this, is because I`m working with a digital camera and add frames as I work. Now I have to press several buttons to see my last captured frame. I want to put all of that in one button or keyboard shortcut.
this is what I got sofar:
def lbNext():
seq = nuke.selectedNode()
seq['last'].setValue(seq['last'].value()+1)
nuke.frame(nuke.frame()+1)
toolbar = nuke.toolbar("Nodes")
toolbar.addCommand('', 'lbNext()', '+N', icon = 'lbNext.png')
I hope there`s someone who can help me
Bas
I have been trying to get the read node to reload with a python command. Sofar I have tried setting the `last` and `version` attributes, which with the gui would trigger a reload. The values are being updated just fine, but there`s no reload of the node. The reason I want to do this, is because I`m working with a digital camera and add frames as I work. Now I have to press several buttons to see my last captured frame. I want to put all of that in one button or keyboard shortcut.
this is what I got sofar:
def lbNext():
seq = nuke.selectedNode()
seq['last'].setValue(seq['last'].value()+1)
nuke.frame(nuke.frame()+1)
toolbar = nuke.toolbar("Nodes")
toolbar.addCommand('', 'lbNext()', '+N', icon = 'lbNext.png')
I hope there`s someone who can help me
Bas
