Url problems with movieclip button

Hi there,

I have 10 movieclips with the following code apllied to them:

onClipEvent (mouseDown) {
getURL(“url”, “_blank”); <— with different urls on each movieclip…
}
on (rollOver) {
gotoAndPlay(13);
}
on (rollOut) {
gotoAndPlay(2);
}

When I open it in IE, and press a movieclip, it loads the same link…(the link on the last movieclip on the stage). When i delete the code of the last movieclip on the stage, it will then take the link of the movieclip before it…

Does someone know what I’m doing wrong? :hangover: