-
[CS3] MAJOR buttons help
i am trying to turn this site into
flash. (images might take a while to load)
when i make the buttons for the login names, i want to get it so that even when you mouse out of the area, the text-box type thing is still visible until you click outside the area.
anyone know how?
:confused:
-
?? what part are you un-sure of?
make your button...
add code so that when you rollOver it.. it makes the textField movieClip visible..
when you rollOver the other name..it makes the previous textField movieCLip invisiible..and its own textField clip visible.
example:
PHP Code:
dadButton.onRollOver = function(){
dadFieldClip._visible = true;
familyFieldClip._visible = false;
}
familButton.onRollOver = function(){
dadFieldClip._visible = false;
familyFieldClip._visible = true;
}
-
ummm...
i just want it so that once you've clicked it, it will stay clicked until you click elsewhere.
but your answer would work.