1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
_root.texte1 = "OBJECTIFS DE LA MISSION:\n- PROTEGER L\'ECOLE";
_root.n_texte = 1;
_root.tempo_texte = 0;
function affiche1() {
_root.indications.test = 0;
_root.indications.onEnterFrame = function() {
this.test++;
if (this.test == 1) {
this.texte = eval("_root.texte"+_root.n_texte).substr(0, _root.tempo_texte);
_root.tempo_texte++;
if (eval("_root.texte"+_root.n_texte).substr(_root.tempo_texte, 1) != " ") {
_root.tape.start();
}
if (_root.tempo_texte>length(eval("_root.texte"+_root.n_texte))) {
delete this.onEnterFrame;
trace("TOUT MON TEXTE EST ECRIT")
}
}
if (this.test == 2) {
this.test = 0;
}
};
} |