PDA

View Full Version : I need a bigggggggg help



jpereira
June 24th, 2003, 06:56 AM
Hi,

I need make a drag and drop mc, something like that:

6 options (ex. circles), if i drag one circle(grey) to a new place, and if is the right place the circle change to green, wrong place change to red.

I try, but cant do anything. Please help me!

(sorry my english)
:thumb:

jpereira
June 24th, 2003, 06:59 AM
opssssssss!!!!
this is for MX

tks

kode
June 24th, 2003, 07:53 AM
theClipYouWantToDrag.onPress = function() {
this.onMouseMove = function() {
this._x = this._parent._xmouse;
this._y = this._parent._ymouse;
updateAfterEvent();
};
};
theClipYouWantToDrag.onRelease = function() {
delete this.onMouseMove;
var colorObj = new Color(this);
colorObj.setRGB(this.hitTest(theClipWhereItShouldB eDropped) ? 0xFF0000 : 0x00FF00);
};
maybe something like that... ?