Command to display the Grasshopper remote pannel in Rhino

Hello,

Is it possible to make a command in order to display the remote pannel (Rhino pannel nammed Grasshopper) ?

There is almost a command for every pannel, but I didn’t find any way to display this one, is there any ?

Thanks,
Gaspard

from Rhino.UI import Panels
from System import Guid
Panels.OpenPanel(Guid('b45a29b1-4343-4035-989e-044e8580d9cf'))

GhRemotePanel.py (116 Bytes)

And to to get the pannel ids list:

from Rhino.UI import Panels
from System import Guid
print(Panels.GetOpenPanelIds())

See more here:
https://developer.rhino3d.com/api/RhinoCommon/html/T_Rhino_UI_Panels.htm

1 Like