Tengo el silente código que al configurar flash 8 con las propiedades de pantalla para que con formato flash 6 y AS 1.0 me funciona sin problema
Como lo puedo pasar a flash 8 o flash 7 AS 2 ?
onClipEvent (load) {
accel = 0.2;
rate = 0.2;
targetwidth = _root.stand_value;
}
onClipEvent (enterFrame) {
//elasticScale(this.targetScale, this.accel, this.rate);
xx +=accel+(56-_width)*rate;
_width += xx;
if (Math.abs(56-_width)<1) {
_width = -56;
}
x = x*accel+(targetx-_x)*rate;
_x += x;
}
Gracias
