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.
mc.onPress = function ()
{
startDrag(this,true);
}
mc.onRelease = function ()
stopDrag();
}
this.createEmptyMovieClip("halter", 100);
this.onEnterFrame = function() {
var gesamt = halter.getBytesTotal();
var geladen = halter.getBytesLoaded();
if (gesamt>4 && geladen>=gesamt) {
halter.onPress = function() {
startDrag(this);
};
halter.onRelease = function() {
stopDrag();
};
delete this.onEnterFrame;
}
};
halter.loadMovie("deine.swf");
function observeLoad ( mc )
{
clearInterval ( OBS )
var t = mc.getBytesTotal()
var l = mc.getBytesLoaded()
if ( t > 100 && l == t )
{
mc.onPress = function ()
{
startDrag(this,true);
}
mc.onRelease = function ()
{
stopDrag();
}
}
else
{
OBS = setInterval ( this, "observeLoad", 80 )
}
}
_root.container_mc.loadMovie("grafik.swf")
observeLoad ( _root.container_mc )