gif made into a clickable gif that allows a webpage to open

1638 views2 repliesLast post: 11/1/2005
Hi

how can i create a gif and assign a url to it.

have uploaded the image to SQL database to be displayed on my dynamic webpage using some asp script. and when this image is displayed on the webpage i want users to be able to click it to open another html page.

know that using Dreamweaver you can make a image a clickable link but i need to be able to make it work without using dreamweaver

cheers
westlondonsun
#1
That's what ImageReady is for / does...

Assuming you have a fairly current rev of Photoshop. Look in Help for Image Map.

Art
#2
westlondonsun,

An image cannot carry a URL - it is the HTML code that does that. You need to have your script write the correct HTML around the data that it is pulled from the database, as in:

<a href="your_required_url"><img src="your_filename.gif></a>
#3