bonsoir
voila mon souci j ai un bug sur un menu que je suis en train de concevoir
au passage de la souris sur mes logos l intitulé s affiche en fondu (roll over , roll out)
j ai utilisé cette synthaxe
studtxt_mc._alpha = 0;
studtxt2_btn._visible = false;
stud_btn.onRollOver = function(){
var alpha_interval:Number = setInterval(fadeImage, 50, studtxt_mc);
function fadeImage(target_mc:MovieClip):Void {
target_mc._alpha += 20;
if (target_mc._alpha >= 100) {
clearInterval(alpha_interval);}
}
}
stud_btn.onRollOut = function(){
var alpha_interval:Number = setInterval(fadeImage,50, studtxt_mc);
function fadeImage(target_mc:MovieClip):Void {
target_mc._alpha -= 20;
if (target_mc._alpha <= 0) {
clearInterval(alpha_interval);}
}
}
cela marche bien mais des que j accelere le passage de la souris les fondus ne fonctionnent pas jusqu au bout ... si quelqu un pouvait m aider