I have a problem. Is it possible to hide/unhide somrthing in flash? I want to have a pic, and when the mouse is over, it unhides the description of the pic…if you know, please tell me how…
thanks
Edit: Just wanted to make sure that my thread wasnt pulled down, to the dumb
Another one. picture_mc should be a movie clip [AS]description_mc.onEnterFrame = function() {
(picture_mc.hitTest(_xmouse, _ymouse, false)) ? description_mc._visible=true : description_mc._visible=false;
};[/AS]