styleBunny
Technical User
hi,
im using this code to fade my symbol (slider2), when a button is realsed using action script...
fadeOut = setInterval(fade, 100);
function fade() {
slider2._alpha -= x;
x = x+3;
if (Slider2._alpha<=0) {
clearnInterval(fadeOut);
}
}
when users roll over the next button, i want the alpha to be restored...
_root.slider2._alpha = 20;
i have that for the on roll over state, tho the symbol changes to this alpha for a second then disapears again...
helps ?
p.
im using this code to fade my symbol (slider2), when a button is realsed using action script...
fadeOut = setInterval(fade, 100);
function fade() {
slider2._alpha -= x;
x = x+3;
if (Slider2._alpha<=0) {
clearnInterval(fadeOut);
}
}
when users roll over the next button, i want the alpha to be restored...
_root.slider2._alpha = 20;
i have that for the on roll over state, tho the symbol changes to this alpha for a second then disapears again...
helps ?
p.