Quelqu'un peut m'expliquer pourquoi dans ce script, la ligne en bleu affiche bien "image47", et la ligne en rouge affiche "undefinited"
Survole = function(){
nom = this._name;
tDep = getTimer()+1400;
monInterval = setInterval(nImg, 80);
}
nImg = function (){
trace(this["image47"]._name); if(getTimer() >= tDep){
clearInterval(monInterval);}
};
this.onEnterFrame = function() {
trace(this["image47"]._name); for(x=0;x<fin;x++){
this["image"+x].onRollOver = Survole;
}
}