Another great solution by stringy!!
But inst there a shorter way for
BIO.onRelease = function() {
if (this.pressed == false) {
this.pressed = true;
} else {
(this.pressed=false);
}
if (!this.pressed) {
move(PICS, 500, 184);
move(MAIL, 592, 276);
move(LINKS, 684, 368);
} else {
move(PICS, 184, 500);
move(MAIL, 276, 592);
move(LINKS, 368, 684);
}
};
because this is nearly 3 times more scripting then before? cant this be 1 function or something?