Reputation: 481
I am using a flash web template that pulls the images from an xml document. I want to link from an image after it is clicked on to another portion of the site.
Here is some sample code from the document:
<gallery id="1" name="public relations">
<image width="121" height="161" image="images/pr/pr_01.jpg"/>
I want the image "pr_01.jpg to link to a url.
Is this possible?
Thank you.
Upvotes: 0
Views: 140
Reputation: 149
I believe a hyperlink tag in xml is:
<test><xhtml:a href="link here">Test Link</xhtml:a></test>
As far as getting the link when the image is clicked, haven't done that before. I'll keep looking into it.
Upvotes: 1