Re: [Nuke-python] access active knob field with Python

2013-05-20 Thread Ben Dickson
I don't think this is exposed currently. The closest I can think of is getting the active widget via Pyside: import PySide.QtGui app = PySide.QtGui.QApplication.instance() print app.focusWidget() ..but that is unlikely to be useful in most cases. What is it you are trying to do with the active

RE: [Nuke-python] access active knob field with Python

2013-05-20 Thread Olivier Jezequel
ython@support.thefoundry.co.uk Subject: [Nuke-python] access active knob field with Python Hi How can i access active knob field with Python? Example: i have a Transform node, i do click inside of knob "scale" field of the node Now i want to do some operations with this field with pyth

[Nuke-python] access active knob field with Python

2013-05-20 Thread lamakaha
Hi How can i access active knob field with Python? Example: i have a Transform node, i do click inside of knob "scale" field of the node Now i want to do some operations with this field with python. Is there some kind of command to do that ? Thanks. Just to be clear, nuke.selectedNode() is not wh