Código PHP:
function TransicionHeight (mc1,inicio,fin,tiempo) {
import mx.transitions.Tween;
import mx.transitions.easing.*;
var fxHeightMC1 = new Tween(mc1, "_height ", Strong.easeOut,inicio,fin, tiempo, true);
}
on(release){
TransicionHeight (clip_1,clip_1._height,400,3)
TransicionHeight (clip_2,clip_2._height,200,3)
}
on(release){
TransicionHeight (clip_2,clip_2._height,400,3)
TransicionHeight (clip_1,clip_1._height,200,3)
}