Jérémy Gurdal

Efi

About Me

EXPERTISE
VFX Artist

Connect

LOCATION
France
WEBSITE

Houdini Skills

Availability

Not Specified

Recent Forum Posts

Python - Hide - Remove : Python panel controls Jan. 30, 2021, 10:46 p.m.

I found it.
https://www.sidefx.com/docs/houdini/hom/hou/PythonPanel.html [www.sidefx.com]
import toolutils
kwargs['pane']=None
pane = toolutils.createOrShowPythonPanel(kwargs, 'attribGraph', "Attributes Graphic", 4)
pane[0].setShowNetworkControls(0)
pane[0].showToolbar(0)

Python - Hide - Remove : Python panel controls Jan. 30, 2021, 3:35 p.m.

Hello,

How can I hide or remove with python the python panel controls (cf gif) when I open a python panel, like the other panel.
import toolutils
kwargs['pane']=None
controls = toolutils.createOrShowPythonPanel(kwargs, 'attribGraph', "Title", 4)
for c in controls:
    c.setShowNetworkControls(0) 

I try "setShowNetworkControls" but It's hide the Network Navigation Bar and not the python panel controls.

Python - Window Always on Top Jan. 30, 2021, 1:28 p.m.

Hello,

How can I create the functionality "Always on Top" of the Houdini Window on my floatingPaneWindow like in the gif ?

Thanks in advance,