hello
I want to make a movie clip containing three buttons. And i want it to fade in when i move over the MC and fade out when i move my cursor away…!
how is this done? plz help me out
hello
I want to make a movie clip containing three buttons. And i want it to fade in when i move over the MC and fade out when i move my cursor away…!
how is this done? plz help me out
Try this.
onClipEvent(enterFrame) {
//
if (_root.myMc._alpha>0 && _root.myFadeOut==1) {
_root.myMc._alpha=_root.myMc._alpha-10;
// Change 10 depending on how fast to fade
}
if (_root.myMc._alpha<100 && _root.myFadeOut==0) {
_root.myMc._alpha=_root.myMc._alpha+10;
}
_root.myMc.onRollOver = function () {
_root.myFadeOut=1;
};
_root.myMc.onRollOut = function () {
_root.myFadeOut=0;
};
}//END
:: Copyright KIRUPA 2024 //--