I'm very new to xml and am using it for my portfolio galleries for the first time so I have some confusion.
The xml for my "web" gallery Iis like this:
<image>
<name>WEB FOLIO</name>
<image>frogs.jpg</image>
<url> target=_blank</url>
</image>
<image>
<name>WEB FOLIO</name>
<image>technocrane.jpg</image>
<url> target=_blank</url>
</image>
</gallery>
I've also created an onRelease function on image_holder_mc in my web.swf file as follows:
image_holder_mc.onRelease = function() {
getURL("_blank");
};
I want the jpeg images in my web.swf file to take the user to that url in a new browser window when clicked. The problem is that the gallery images, when clicked, don't go to the url specified in the xml file. How do I get the image_holder_mc to "speak" with the jpeg images in the xml file so that the images go to the proper url when clicked? If you go to click the folio button and then try out the web gallery, you will see the error I'm getting.
The xml for my "web" gallery Iis like this:
<image>
<name>WEB FOLIO</name>
<image>frogs.jpg</image>
<url> target=_blank</url>
</image>
<image>
<name>WEB FOLIO</name>
<image>technocrane.jpg</image>
<url> target=_blank</url>
</image>
</gallery>
I've also created an onRelease function on image_holder_mc in my web.swf file as follows:
image_holder_mc.onRelease = function() {
getURL("_blank");
};
I want the jpeg images in my web.swf file to take the user to that url in a new browser window when clicked. The problem is that the gallery images, when clicked, don't go to the url specified in the xml file. How do I get the image_holder_mc to "speak" with the jpeg images in the xml file so that the images go to the proper url when clicked? If you go to click the folio button and then try out the web gallery, you will see the error I'm getting.