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.
onClipEvent (enterFrame) {
if (this._parent.Text.maxscroll != 1)
{
if (this._parent.Text.scroll != this._parent.Text.maxscroll)
{
this._parent.down._visible = 1;
}
else
{
this._parent.down._visible = 0;
}
if (this._parent.Text.scroll != 1)
{
this._parent.up._visible = 1;
}
else
{
this._parent.up._visible = 0;
}
}
else
{
this._parent.up._visible = 0;
this._parent.down._visible = 0;
}
switch (_root.scrollex)
{
case "up" :
this._parent.Text.scroll--;
break;
case "down" :
this._parent.Text.scroll++;
break;
case "" :
break;
}
}