Hello,
I am using the import tween class to control the alpha of my “rollover” image.
Problem is that each time I “rollout” and them “rollover” again the alpha snaps back to 100%.
This produces a strobe effect when I need a smooth fade.
I probably need a statment that constantly checks the alpha state and then fades up or down from it’s current value rather than snapping to 100% before fading.
Example: http://www.caroyllabarge.com/2007/clb_intro.html
Here’s what I have now:
[SIZE=1]on (rollOver) {
import mx.transitions.Tween;
import mx.transitions.easing.;
fadeIN = new Tween(this.atmo_mc.a_shape_mc, “_alpha”, Regular.easeOut, 100, 0, .2, true);
}
on (rollOut) {
fadeIN = new Tween(this.atmo_mc.a_shape_mc, “_alpha”, Regular.easeOut, 0, 100, .2, true);
}
on (release) {
fadeIN = new Tween(this.atmo_mc.a_shape_mc, “_alpha”, Regular.easeOut, 0, 100, .2, true);
}
*[/SIZE]