Código:
onClipEvent (keyDown) { if (Key.isDown(39)) { rotationizq = true; // left arrow this._parent.chicoslado._visible=1 this._parent.chicos._visible=0 this._parent.chicoslado.nextFrame() // this._parent.chicos.prevFrame() } if (Key.isDown(37)) { rotationder = true;// right arrow this._parent.chicos._visible=1 this._parent.chicoslado._visible=0 this._parent.chicos.nextFrame() } }