<b>Hi i am making a small Que card game for 3 to 7 year olds to play i have managed to get most of it to work by uesing the following code...
-----------------------------------------------
Card1-----</b>

on (press) {
startDrag(this);
this.swapDepths(100);
}
on (release) {
stopDrag();
if (this._droptarget=="/shadow1") {
setProperty(this, _x, 124);
setProperty(this, _y, 154);
} else {
setProperty(this, _x, 600);
setProperty(this, _y, 154);
}
}
<b>-----------------------------------------------
Card2-----</b>

on (press) {
startDrag(this);
this.swapDepths(100);
}
on (release) {
stopDrag();
if (this._droptarget=="/shadow2") {
setProperty(this, _x, 272);
setProperty(this, _y, 154);
} else {
setProperty(this, _x, 600);
setProperty(this, _y, 300);
}
}
<b>-----------------------------------------------
Card3-----</b>

on (press) {
startDrag(this);
this.swapDepths(100);
}
on (release) {
stopDrag();
if (this._droptarget=="/shadow3") {
setProperty(this, _x, 422);
setProperty(this, _y, 154);
} else {
setProperty(this, _x, 600);
setProperty(this, _y, 450);
}
}
<b>-----------------------------------------------
And so on for 6 cards.

I wont to beable to trigger an event when all 6 cards are in there corect place's for example (goto frame 2 and stop) or (get url"game2.html)

can any one help????</b>