on {rollOver} {
_alpha 100
}
I want the black which i alpha`d to white, to turn black when the mouse is over it.
what is the action =0)
on {rollOver} {
_alpha 100
}
I want the black which i alpha`d to white, to turn black when the mouse is over it.
what is the action =0)
what ?? :cyclops:
i didn’t understand a word but …
onClipEvent (load) {
this._alpha = 0
}
onClipEvent (enterFrame) {
this._alpha += (this.alpha - this._alpha) / 4
}
on (rollOver) {
this.alpha = 100
}
on (rollOut) {
this.alpha = 0
}
the above script should fade in the movie clip on rollOver and fade it out on rollOut …
is that what you wanted ??
yes ! thank you !
lol
no problem
:: Copyright KIRUPA 2024 //--