Incorporating Hot Spot in Cell

A

Al Krismer

Hello,

Is it possible in FP 2003 to incorporate a hotspot within a
cell. I am creating a site map with a table and cells and
would like to have the person visiting the page to be able
to click on the cell to link to a particular page. Is this
possible?

Thanks

Al
 
T

Thomas A. Rowe

No. Hotspots can only be applied to images.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
M

Murray

It is possible to apply a hotspot to a transparent gif image (or any image
for that matter) that is within a cell.

It is even possible to apply a link to a <td> tag, but I don't think you can
do that in FP without doing it manually, and further, you sacrifice support
for v4+ browsers when you do. But consider this code -

<table border="1" width="100%" id="table1">
<tr>
<td onClick="alert('boo')">&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</table>

Put that in a page and preview it. Click on that first cell....
 
M

Murray

Got ya by 2 minutes.

And, if you change my code to this -

<td onClick="alert('boo')" style="cursor:hand; cursor:pointer;">&nbsp;</td>

you'll even get the finger when you mouse over it....
 
T

Thomas A. Rowe

But that is not a Hotspot.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
B

Bob Lehmann

I had thought about giving mine the finger, but figgered I'd keep it basic.

Bob Lehmann
 
Top