Hi,
please is there a way to navigate to given operator (while also selecting it) in current network editor from Python? So far I have found this works when one wants to jump into given component, but that is not exactly what I was looking for - so I thought I might try to ask. Thanks.
ui.panes.current.owner = node
Make a node current by setting its current flag:
op.current = True
See OP Class - Derivative
To home network on a node:
p = ui.panes['pane1']
n = op('/project1/mynode')
p.home(op=n)
See NetworkEditor Class - Derivative
@nettoyeur thank you very much, this works great. I didn’t know about current
and selected
OP flags (I was wrongly looking for selection related stuff on Pane class).