1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| y_init = 20.4;
x_init = 19.6;
introTXT = "mon texte qui defile ici";
txt.autoSize = true;
txt.htmlText = introTXT;
var nIntervalId:Number;
nIntervalId = setInterval(boucle, 80);
function boucle() {
txt._y -= 1;
if (txt._y<=0-txt._height) {
txt._y = y_init;
}
}
invisible.onRollOver = function() {
if(nIntervalId != null)
{
clearInterval(nIntervalId);
}
};
invisible.onRollOut = function()
{
if(nIntervalId != null)
{
clearInterval(nIntervalId);
}
nIntervalId = setInterval(boucle, 80);
};
stop(); |
Partager