hi guys just been trying to fade one image into another on mouse over. found a .fla template which does it for me and have applied my images to it. works how i want it to - image 1 fades into image 2 on mouse over, then goes back to image 1 when mouse moves off
BUT the problem is that when the mouse is over the image and it fades into image 2 it begins to flicker - see for yourself in the .fla file here - [COLOR=#004477]https://rapidshare.com/files/458646027/smoothfaderollovertest.fla[/COLOR]
i think this is all of the code from the different layers
**on (rollOver) {
x = 1;
}
on (rollOut) {
x = 0;
}
**
**setProperty(“fade”, _alpha, al);
**
**al = 0;
**
**setProperty(“fade”, _alpha, al);
**
**if (Number(_level0:x) == 1 and Number(al)<100) {
al = Number(al)+5;
} else if (Number(al)>0) {
al = al-5;
}
gotoAndPlay(2);
**
can anyone help me out with this one?
thanks very much guys
andy