From: The Feldkircher on
Hi

Clip0 refers to your Linkeage Identifier but your MC Instance name is 'top_+i'

Rather than having an on(press) function, why not add an onRelease event to
your loop.

For example - thu.onRelease = thu_released;

Then create a function to listen to all release events

function thu_released():void
{
getUrl(this.theURL);
}

Hope it helps