mitico----
ero sicuro che avresti risposto....
io nel frattempo ho trovato un'altra soluzione

function allunga(mover, arr, step) {
arrivo = arr;
mover.onEnterFrame = function() {
mover._height += step;
if (mover._height>=arrivo) {
delete mover.onEnterFrame;}
};
}
function accorcia(mover, arr, step) {
mover.onEnterFrame = function() {
if(mover._height != 50){
mover._height += step;
}
};
}
sf1.onRollOver = function() {
allunga(_root.sf1, 360, 10);
accorcia(_root.sf2, 50, -10);
accorcia(_root.sf3, 50, -10);

};
sf2.onRollOver = function() {
allunga(_root.sf2, 360, 10);
accorcia(_root.sf1, 50, -10);
accorcia(_root.sf3, 50, -10);
};
sf3.onRollOver = function() {
allunga(_root.sf3, 360, 10);
accorcia(_root.sf1, 50, -10);
accorcia(_root.sf2, 50, -10);
};



grazie mille a buon rendere