On (mouseOver) Unhide?

Hi!

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

Yes you can do that. You can initiall set all your descriptions to be invisible and they can turn visible when you move the mouse over.

[AS]
//on the description
this._visible = false;

//on the picture
onClipEvent(enterFrame){
this.onRollOver = function() {
myDescription._visible = true;
}
}
[/AS]

Thanks…Will just try that

lil’ simplier version:

//on the description
this._visible = false;

//on the picture
on(rollOver) {
                myDescription._visible = true;
}

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]