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) {
var clip = _parent.holder;
var targetX = clip._x;
var goPage = 0;
var pageWidth = clip.area1._width;
var speed = 6;
}
onClipEvent (enterFrame) {
newPosition = targetX + -1*(goPage)*pageWidth;
clip._x += (newPosition-clip._x)/speed;
}