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.
onClipEvent (load) {
ifFrameLoaded(1) {
this._alpha = 50;
}
}
on (press) {
_root.move = true;
}
onClipEvent (load) {
_root.move = false;
this._alpha = 50;
}
onClipEvent (enterFrame) {
if (_root.move) {
gotoAndStop(30);
}
}