Can you open a popup from the Horizontal Menu?

Can you open a popup from the Horizontal Menu?

Yes, you can. The way I do it is using the onItemClicked event.
Under that action event, add a script.

if event.enabled:
	if event.label == 'Open PopUp':
		system.perspective.openPopup(...)
4 Likes

Perfect. Thank You.

1 Like