paraphan
Erfahrenes Mitglied
schönen tag,
hab hier diese tolle preloading-funktion. ich möchte aber,
das der balken, welcher den ladefortschritt anzeigt, am
schluss eine bestimmte länge hat, sagen wir mal 200 pixel.
wie mach ich das?
bytesLoaded = (_root.getBytesLoaded());
KbytesLoaded = (int(_root.getBytesLoaded()/1024) add " KB");
bytesTotal = (_root.getBytesTotal());
KbytesTotal (int(_root.getBytesTotal()/1024) add " KB");
percentSetup = ((bytesLoaded/bytesTotal)*100*2);
percentage = int(percentSetup) add "%";
setProperty ("_root.balken", _xscale, percentSetup);
if (bytesLoaded == bytesTotal) {
_root.play();
}
ich mein, eigentlich sollte das doch hier möglich sein:
bei multiplikation mit zwei am schluss müsste der balken doch 200
pixel lang sein, oder?
ist er aber nicht...
hab hier diese tolle preloading-funktion. ich möchte aber,
das der balken, welcher den ladefortschritt anzeigt, am
schluss eine bestimmte länge hat, sagen wir mal 200 pixel.
wie mach ich das?
bytesLoaded = (_root.getBytesLoaded());
KbytesLoaded = (int(_root.getBytesLoaded()/1024) add " KB");
bytesTotal = (_root.getBytesTotal());
KbytesTotal (int(_root.getBytesTotal()/1024) add " KB");
percentSetup = ((bytesLoaded/bytesTotal)*100*2);
percentage = int(percentSetup) add "%";
setProperty ("_root.balken", _xscale, percentSetup);
if (bytesLoaded == bytesTotal) {
_root.play();
}
ich mein, eigentlich sollte das doch hier möglich sein:
PHP:
percentSetup = ((bytesLoaded/bytesTotal)*100*2);
pixel lang sein, oder?
ist er aber nicht...