XML/Flash Slideshow - Change hyperlink for each image?

Hi there,

I’m new to these forums and to Flash in general so my apologies in advance if I leave something important out of my questions. I’ve used the excellent tutorial at http://www.kirupa.com/developer/mx2004/xml_slideshow.htm to create a slideshow from an XML file generated by PHP/MySQL. I’ve successfully managed to add a couple extra text fields, but I would also really like to be able to have the viewer directed to a different link depending on what image is clicked. Is this possible? So far, I’ve only been able to get clicking to open a link by putting the following on the movie:

on (release){
    getURL("http://www.mysite.com/", "_blank");
}

Can anyone give me a pointer as to how I can change that URL with a field from the XML file with the change of image?