Hi, guys.
I'm creating some GUIs for my model. When I try to use some cold links that point to the perspective view I am using, they don't work (specifically toggle connections and ignore objects checkboxes). If I use the GUI as a popup, it works great. The problem only happens when I use my GUI locked as a Dashboard (see picture):
I'm using the following code on press. For toggle connections:
treenode activedoc = activedocumentnode(); set(viewhideallconnectors(activedoc), not(get(viewhideallconnectors(activedoc)))); repaintall();
and for toggle ignore objects:
treenode activedoc = activedocumentnode(); set(viewignoreobjects(activedoc), not(get(viewignoreobjects(activedoc)))); repaintall();
Thanks in advance!