Div Posted August 11, 2009 Share Posted August 11, 2009 (edited) Hi, I'm working on a exporter tool in python (called from a shelf tool) and I'd like to pop up a new window with some export options. I know it could be easily set up using wxPython, but as i want the tool to be self-installing, I can only use houdini's built-in modules. I've tried to create a node and set parms on it, but I haven't found a way to pop up a floating pane with only these parms. I use the createFloatingPanel() and createFloatingPaneTab() fonctions, but I can't find a way to make them show only the parms i want, i mean it works only when i select manually my created node after the function's call. Is there a way to automatically select this node by script, or another solution to do the thing ? Thanks a lot for your help. Edited August 11, 2009 by Div Quote Link to comment Share on other sites More sharing options...
graham Posted August 11, 2009 Share Posted August 11, 2009 You should be able to do something like this: hou.ui.curDesktop().createFloatingPanel(hou.paneTabType.Parm).paneTabs()[0].setPwd(hou.Node) Quote Link to comment Share on other sites More sharing options...
Div Posted August 12, 2009 Author Share Posted August 12, 2009 It works. Thanks a lot Graham. 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.