Tengo este codigo en el mc
Código PHP:
onClipEvent(load){
x=358;
_x=358;
}
onClipEvent(enterFrame){
_x+=(x-_x)*0.2;
}
Código PHP:
a_btn.onRelease = function() {
clip_mc.x=_root.clip_mc.x + 358
}
}
b_btn.onRelease = function() {
clip_mc.x=_root.clip_mc.x - 358
}
Mil gracias anticipada.