Roli189
Mitglied
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"?
hätte ich gedacht aber so ist es scheinbar nicht...
Greetz
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