Hey this is my first post!!, thanks to everybody for this great forum, your help and knowledge makes Flash not so hard.
Well I’m trying to do some kind of quiz (like the one’s included in Flash templates), the basic functionality is drag one item and put it in the correct place (or drop place). I take some code of the kirupa’s collision tutorials, but I can’t apply that to my particular situation.
The current situation is: i have 3 drag rectangles and 3 drop rectangles, I can drag and drop all the drag rectangles, but just the last one (the third drag rectangle), seems to sense the collision with all the 3 drop rectangles.
My code is:
[FONT=Courier New]drag_mc = [“drag0”, “drag1”, “drag2”];
drop_mc = [“drop0”, “drop1”, “drop2”];
function init() {
numDrags = drag_mc.length;
for(i=0; i<numDrags; i++) {
var rect1:MovieClip = drag_mc*;
temp1 = eval(rect1);
temp1.onPress = function() {
this.startDrag();
drop = false;
};
temp1.onRelease = function() {
this.stopDrag();
drop = true;
};
} // fin del for principal
this.onMouseMove = function() {
collision_detect(“temp1”);
};
};
init();
function collision_detect(rect) {
numDrops = drop_mc.length;
for(j=0; j<numDrops; j++) {
var rect2:MovieClip = drop_mc[j];
temp2 = eval(rect2);
temp1 = eval(rect);
**if**(temp1.**hitTest**(temp2)) {
**trace**("collision");
temp2.**_alpha** = 40;
}
**else** {
temp2.**_alpha** = 100;
}
**updateAfterEvent**();
}
}
Thanks in advance:nat:[/FONT]