class ClaseBola extends MovieClip { // Propiedades de la clase var Orden:Number; var volverx:Number; var volvery:Number; var retorno:Boolean; var Colocado:Boolean; var CercaDe:String; function ClaseBola() { this.Orden = 0; this.CercaDe = ""; this.retorno = false; this.Colocado = false; } function onLoad() { this.retorno = false; this.Colocado = false; } function onPress() { if (not this.Colocado) { startDrag(this); this.retorno = false; this.volverx = -(this._x / 10); this.volvery = -(this._y / 10); } } function onRelease() { if (not this.Colocado) { stopDrag(); if (_root.JuntoA(this.CercaDe, this)) { this.Colocado = true; _root.MCPuntos.SiguientePaso(); } else { _root.MCIntentos.SiguientePaso(); this.retorno = true; } } } function onEnterFrame() { if (not this.Colocado) { if (this.retorno == true) { this._x = (this._x - this.volverx) / 1.1; this._y = (this._y - this.volvery) / 1.1; } } } }