I Dont Want Object Controller ToGet Closed

Hi
Please tell me how it can be done.
I made a group of objects each shortcuts of some programs...say A...
Then in Group properties I set the 'Popup' as 'Menu'.
Then I made a controller which toggles the group A. But as I click on any 'shortcut' in the group the 'target' opens, group closes
and the controller too closes.
I dont want the controller to be closed.
Please tell me...
Thanks
Bye
2,197 views 1 replies
Reply #1 Top
Dont set object controller a member of that group. You can also check if parent child relationship can help you. Create a toggle parent object with 0% opacity and set others as its child. When you want the object to hide/visible toggle the parent object with the controller. If this also doesnt help then go for script. DektopX.Object("your_object").visible =true/false is the key line to do it.