Einzelnen Beitrag anzeigen
Alt 24-10-2005, 09:57   #2 (permalink)
shorty
notzucht
 
Benutzerbild von shorty
 
Registriert seit: Nov 2003
Ort: Potsdam
Beiträge: 2.939
...

Wenn Du dir so viel Mühe bei der Animation eine Effekts gibst, schafst Du es mit Sicherheit auf auf die "f1" Taste zu drücken ...
PHP-Code:
deinButton.onRollOver = function() {
    
// deine aktion, z.B.
    
animation.play();
};
deinButton.onPress = function() {
    
// deine aktion, z.B.
    
animation.stop();
};
deinButton.onRelease = function() {
    
// deine aktion, z.B.
    
animation._visible false;
};
deinButton.onReleaseOutside = function() {
    
// deine aktion, z.B.
    
animation.gotoAndPlay(25897789);
};
deinButton.onDragOut = function() {
    
// deine aktion, z.B.
    
animation.gotoAndStop(1);
};
deinButton.onRollOut = function() {
    
// deine aktion, z.B.
    
animation._alpha 0;
}; 
__________________
.
Flex in a week | Viertel vor halb nach Vollmond | ^^°.°^^ | Waltz with Bashir
.
shorty ist offline   Mit Zitat antworten