How to make something like this work? (Flash 8)
on (press) {
startDrag(_target);
}
on (release) {
stopDrag();
if (this._droptarget == “/mytarget1” or “/mytarget2”) {
_root.vopr.text = “yes!”;
}
else {_root.vopr.text = “no!”;}
}
The problem is - it always returns “yes!”. Any ideas?