class ClaseRespuesta3 extends MovieClip { // Propiedades de la clase var volverx:Number; var volvery:Number; var retorno:Boolean; var correcto:Number; var hitAreaName:String; var mcasociado:String; function onLoad() { this.retorno = false; } function onPress() { startDrag(this); this.retorno = false; this.volverx = -(this._x / 10); this.volvery = -(this._y / 10); } function onRelease() { var aux = 0; stopDrag(); aux = _root.CorrectoActual; aux++; if (this.hitTest(this.hitAreaName) and ((this.correcto == aux) or (this.correcto == -1))) { _root.soundAcierto.start(); if (this.correcto == _root.RespuestasValidas) { play(); return; } _root.CorrectoActual = this.correcto; this._visible = false; } else { _root.soundFallo.start(); this.retorno = true; _root.MCintentos.SiguientePaso(); } } function onEnterframe() { if (this.retorno == true) { this._x = (this._x - this.volverx) / 1.1; this._y = (this._y - this.volvery) / 1.1; } } }