|
jagis
post date:
2007-12-20 12:57:20
|
I have a custom button which loads a movieclip. What I need to know is how to unselect the menu when I do so, because when the moveclip is loaded it looks like the menu item selected is associated and if I clicked a custom button, the onRelease should unselect the current menu selection.
Please do reply, I would appreciate the help.
|
|
|
Horea Radu [Extend Studio]
post date:
2007-12-22 10:30:27
|
Hello,
Yes, this can be done. You have to assign an id to the button so you can refer to it (for example myid) and place the following code when you want the button to be deactivated:
mymenu.buttons['myid'].active = false;
where mymenu is the name of the menu component and myid is the id of the button you want to unselect.
For more information on how to add button IDs please see the Help -> Advanced Button Actions section.
Best regards,
Horea RADU, Extend Studio.
|
|