Nour Almasri Posted May 16, 2016 Share Posted May 16, 2016 Hi guys , sorry for the basic question , but i need to open the parameter window for any node via the python script , how i can do that . p.s : what i mean by parameter window is : (Right click on any node > parameter and channel > parameter ) . Quote Link to comment Share on other sites More sharing options...
anim Posted May 17, 2016 Share Posted May 17, 2016 here is an example how to open floating Parm panel for selected node: sel = hou.selectedNodes() if sel: desktop = hou.ui.curDesktop() pane = desktop.createFloatingPane(hou.paneTabType.Parm) pane.setCurrentNode(sel[0]) else: print "please select some node" Quote Link to comment Share on other sites More sharing options...
Nour Almasri Posted May 17, 2016 Author Share Posted May 17, 2016 Work fine , many thanks . Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.