Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

links within pages/hotspots 1

Status
Not open for further replies.

danfood

Programmer
Aug 8, 2001
32
GB
Hi
I am trying to create a link from one part of a flow chart (the flow chart is a .gif) to another.


I have defined the link area
<area a href=&quot;#box2&quot; shape=&quot;rect&quot; coords=&quot;522, 280, 570, 380&quot; border=&quot;0&quot; />
but
I can't get the screen to jump to the target area which I have defined as:
<area a name=&quot;box2&quot; shape=&quot;rect&quot; coords=&quot;600, 2030, 800, 2400&quot; border=&quot;1&quot;/>

I have tried many combinations of putting the &quot;a&quot; tags outside of the &quot;area&quot; tags and stuff but can't get anything to work.

I have done links successfully many times jumping from text to text but not within a graphic.

Cheers
Dan
 
This worked for me.

<area><a href=&quot;#box2&quot; shape=&quot;rect&quot; coords=&quot;522, 280, 570, 380&quot; border=&quot;0&quot;>Test1</a></area>

<area><a name=&quot;box2&quot;shape=&quot;rect&quot; coords=&quot;600, 2030, 800, 2400&quot; border=&quot;1&quot;>Test2</a>

 
Wood
cheers for your reply, when doing your suggested solution the text for &quot;test1&quot; and &quot;test2&quot; simply appeared at the top of my embedded gif.

thanks for your time
Dan
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top