Okay - this isn’t as cool as using droptarget, but it is affective for what you want to do (I think). If it is, please look at my post and answer - even if you don’t have an answer? Please??
http://www.kirupaforum.com/showthread.php?s=&threadid=16167
(-:
Um, alright, try this, but, since the box is just lines…you have to land the text on one of the lines (cause that’s all the clip is).
on (release) {
stopDrag();
if (eval(this._droptarget) ==_root.target1) {
setProperty(this, _x, 150);
setProperty(this, _y, 250);
} else {
setProperty(this, _x, 150);
setProperty(this, _y, 50);
}
}
Put a white or invisible box in the target1 clip and you’ll see that where ever you put it inside the box, it’ll stick to 150, 250. If you just fix that code, you’ll have to land it almost exactly on the line, like I said.
Later,
–Elios
Thanks guys. It’s working now and I realize I’m not as lost as I thought I was. It’s all good.