Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature currently requires accessing the site using the built-in Safari browser.
percent = int((getBytesLoaded()/getBytesTotal())*100);
if (percent >= 100) {
gotoAndPlay(3);
} else {
percent = int((getBytesLoaded()/getBytesTotal())*100);
balken._xscale = percent;
}
gotoAndPlay(1);
onClipEvent(enterFrame){
percent = int((getBytesLoaded()/getBytesTotal())*100);
if (percent >= 100) {
_root.play();
} else {
percent = int((getBytesLoaded()/getBytesTotal())*100);
_root.balken._xscale = percent;
}
}