Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
leer.attachMovie(art[i], "a1", this.getNextHighestDepth());
function leerclip() {
if(i < art.length){
this.textfeld.text = this.textfeld.text + art[i];
}
}
if (i == 11) {
stop();
}
var art = ["a","r","t","h","o","l","o","m","ä","u","s"];
var interval;
var i;
var intDuration = 10;
var tweenDuration = 3;
var snd = new Sound(this);
snd.attachSound("tipp");
i = -1;
newInterval();
function leerclip() {
if(i < art.length){
snd.start();
this.textfeld.text = this.textfeld.text + art[i];
newInterval();
}
}
function newInterval(){
i++;
interval = setInterval(wait, intDuration + random(300));
}
function wait(){
clearInterval(interval);
leerclip();
}