_visable action script

Im making a website using flash 5. When the site loads i want certain things to be invisable. When the mouse rolls over a button or presses a button i want those things to be visable. I know this is a dumb question but its my first time using flash 5!!

On the things that you want to be invisible when loaded, put:

onClipEvent (load) {
_visible = 0
}

and when you want it visible, if it’s a movie clip called box, on the button action use:

on (release) {
_root.box._visible = 1;
}