Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
if (_framesloaded==_totalframes) {
gotoAndStop ("main");
} else {
if (_framesloaded>=3) {
loadMovie ("mylogo.swf", "moviedummy");
gotoAndPlay ("loop");
} else {
gotoAndPlay ("start");
}
}
if (_framesloaded == _totalframes) {
// Comment: the loadbar is explained later...
loadbar.gotoAndStop("fullbar");
gotoAndStop ("ready");
} else {
txt_numBytesLoaded = this.getBytesLoaded() add " bytes loaded";
txt_numBytesRemain = (this.getBytesTotal()-this.getBytesLoaded()) add " bytes remaining";
tempProc = int((this.getBytesLoaded()/this.getBytesTotal())*100);
txt_procent = tempProc add " procent loaded";
loadbar.gotoAndStop(tmpProc);
}
gotoAndPlay ("load");