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;
};