How can I hide/show a layer using actionscript?
Also I have a symbol/button that I need to hide/show, I'm trying to do this from a pushbutton that when clicked shows the symbol/button with the following code:
then you click the symbol/button to hide it again. Problem is the pushbutton to show the symbol/button doesn't work. It doesn't do anything and no error is outputted.
Thanks for help.
Also I have a symbol/button that I need to hide/show, I'm trying to do this from a pushbutton that when clicked shows the symbol/button with the following code:
Code:
on (release) {
symbol._visible="true";
}
Thanks for help.