Brauche Hilfe beim Funktion schreiben

Hey echt super das klappt toll!

Trotz das ich lästig bin noch eine Frage:

Wie kann ich das Script ändern damit sich der Clip wenn man drüber fährt ein bisschen "aufbläst"?

PHP:
var buttons = new Array("home", "bike", "links", "resultate", "termine", "gast", "kontakt");
var namen = new Array("Home", "Bike", "Links", "Resultate", "Termine", "Gästebuch", "Kontakt");

for (var i = 0; i<buttons.length; i++) {
	this[buttons[i]].btext.text = namen[i];
	this[buttons[i]].onRollOver = function() {
		this.btext.textColor = 0xFF0000;
                                this[buttons[i]]._width *= 2;
                                this[buttons[i]]._height *= 2;
 
	};
	this[buttons[i]].onRollOut = function() {
		this.btext.textColor = 0x000000;
	};
}

hätte ich gedacht aber so ist es scheinbar nicht...

Greetz
 
PHP:
for (var i = 0; i<buttons.length; i++) {
    this[buttons[i]].btext.text = namen[i];
    this[buttons[i]].onRollOver = function() {
        this.btext.textColor = 0xFF0000;
        grow(this, 150);
    };
    this[buttons[i]].onRollOut = function() {
        this.btext.textColor = 0x000000;
        grow(this, 100);
    };
}

function grow(obj, dscale) {
    obj.onEnterFrame = function() {
        this._xscale += (dscale - this._xscale) / 5;
        this._yscale = this._xscale;
        if (Math.abs(dscale - this._xscale) < 1) {
            this._xscale = this._yscale = dscale;
            delete this.onEnterFrame;
        }
    }
}

Gruß
.
 
Zurück