estoy haciendo un juego de arrastrar y soltar con colores y figuras geometricas para un software educativo:
ej ... cree un MCLIP con la palabra YELLOW (dentro del mclip se creo un boto) y cree otro ovalo con el color YELLOW de relleno...
en el MCLIP con la palabra colo que la siguiente programacion:
Código:
donde dropZone4 = ovalo YELLOW (ovalo relleno de amarillo) onClipEvent (load) { origX = this._x; origY = this._y; } onClipEvent (mouseDown){ if(this.hitTest(_root._xmouse,_root._ymouse)) { this.startDrag(); } } onClipEvent (mouseUp) { if(this.hitTest(_root._xmouse,_root._ymouse)) { this.stopDrag(); if(this.hitTest(this._parent.dropZone4)){ _root.texto = ("right, you did very well"); _root.gotoAndStop(2); } else { _root.texto = ("try again"); _root.gotoAndStop(3); } } if(_parent._root.dropZone4.hitTest(this._x, this._y, true)) { this._x =this._parent._root.dropZone4._x; this._y =this._parent._root.dropZone4._y; } else { this._x = origX; this._y = origY; } }
el punto es que son varios colores y deseo que al terminar de colocar las palabras en el color correspondiente me aparezca una imagen con un msn de felicitaciones... se que taqlvez puede ser algo sencillo pero la verdad ando trancado en esta parte y les agradeceria un aporte...
de antemano gracias por sus aportes