LOader über die ganze seite!

irgendwie klappt das nich den loader in meine site einzubauen.....
(es passt sich dann immer nich an die seite an.....hm...

EDIT: glaub sogar das er sich sogar gar nicht der seite anpasst! Also ich mein überhaupt!


Hat noch jemand ein anderes Beispiel?
 
Zuletzt bearbeitet:
Ich hab hier mal ne Datei......klappt wunderbar...nur...

beim laden geht ein Bewegungstween(mit von links nach rechts)

nun möchte ich aber das er von links nach rechts lädt und dann wieder zurückgeht.....weil man ja sonst das geladene movie nicht sieht..

Was muss ich denn umschreiben im AS?

hier der AS:

PHP:
function preload(mc)
{
    _root.mare.gotoAndStop(1);
    ldr._width = 1;
    ldr.onEnterFrame = function ()
    {
        _root.mare.gotoAndStop(1);
        this.finalW = Math.round(Stage.width);
        var _l4 = mc.getBytesTotal();
        var _l5 = mc.getBytesLoaded();
        var _l3 = Math.floor(_l5 / _l4 * 100);
        if (_l3 < 1 || isNaN(_l3))
        {
            _l3 = 1;
        } // end if
        if (_l3 > 100)
        {
            _l3 = 100;
        } // end if
        this._width = Math.ceil(this._width + (this.finalW / 100 * _l3 - this._width) / 5);
        _root.proc.proc.text = _l3;
        if (_l5 == _l4 && _l4 > 0 && this._width == this.finalW)
        
        {
            delete this["onEnterFrame"];
            _root.proc.meriLa(10, -150);
            mc.gotoAndStop(1);
        } // end if
    };
} // End of the function
function meriLaIas()
{
    
} // End of the function
function cprg()
{
    
} // End of the function
function cprg2()
{
} // End of the function
Stage.scaleMode = "noScale";
Stage.align = "LT";
resScena = function ()
{
    _root.ldr.finalW = Math.round(Stage.width);
};
this.onResize = function ()
{
    resScena();
};
resScena();
MovieClip.prototype.meriLa = function (x, y)
{
    var _l2 = this;
    delete _l2["onEnterFrame"];
    _l2.onEnterFrame = function ()
    {
        this._x = this._x + (x - this._x) * 0.100000;
        this._y = this._y + (y - this._y) * 0.100000;
        if (Math.ceil(this._x) == x && Math.ceil(this._y) == y)
        {
            delete this["onEnterFrame"];
        } // end if
    };
};
var mare = _root.createEmptyMovieClip("mare", 1);
var ldr = _root.attachMovie("ldr", "ldr", 2);
mare.loadMovie("site.swf");
preload(_root.mare);
_root.menu = my_cm;
 

Anhänge

Zurück