Here's a fun one.
I've got a GUI for a custom operator, and a button for opening an ICE Tree
to display the insides of a specific Compound. This allows the user to use
the sliders in the GUI for basic controls, but also provides quick access
to the guts of an ICE Tree for advanced controls.
To make this work, all you need is the address to the specific Compound you
want to open. So for a custom compound (MyCompound) in an ICE Operator
(MyICEOperator) use the following:
nodeAddress = oSimCloud.FullName+".pointcloud.MyICEOperator.MyCompound"
Application.SelectObj(nodeAddress)
Application.OpenView("ICE Tree")