Hallo zusammen,
bin dabei ein Menü zu erstellen, in welchem die Buttons ein- und ausfaden.
Das hat auch gut funktioniert.
Allerdings möchte ich nun noch, dass der jeweilige Button solange aktiv bleibt bis die Mouse über einen anderen Button geht.
Ich weiß zumindest schon, daß dies mit Variablen geht, aber wie?
Hier mein as:
stop();
button_mc.onRollOver = function() {
this.gotoAndPlay(2);
};
button_mc.onRollOut = function() {
this.gotoAndPlay(17);
};
button_mc.onRelease = function() {
this._parent.gotoAndStop("bert")
};
button1_mc.onRollOver = function() {
this.gotoAndPlay(2);
};
button1_mc.onRollOut = function() {
this.gotoAndPlay(17);
};
button1_mc.onRelease = function() {
this._parent.gotoAndStop("hans")
};
Vielleicht kann mir jemand helfen. Wäre super!
Gruß Netzer