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.
this.createTextField("text_txt",this.getNextHighestDepth(),100,100,100,100);
text_fmt = new TextFormat();
text_fmt.font = "Arial";
text_fmt.color = "0x744AB5";
text_fmt.size = 20;
text_txt._x = 100;
text_txt._y =100;
text_txt.setNewTextFormat(text_fmt);
text_txt._rotation =90;
var j=0;
this.onEnterFrame=function(){
text_txt.text=j;
j++;
if(j==31) {
delete this.onEnterFrame;
}
}