My entire detailed palette is contained inside a single movie clip with smaller nested movie clips inside; the main clips instance is named palette. It starts off hidden; I want it to become visible when the active color swatch or the palette icon are clicked, then hide again when either is clicked again. So I assigned the following script to both:
on (release) {
_root.base.palette._visible=!_root.base.palette._visible;
}


