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.
==============================================
 
M

Murray

Righty-oh, Bert. It's even better than a hotspot.

But you are correct. I assumed that the poster did not necessarily need the
hotspot, but rather was just seeking a link.
 
T

Thomas A. Rowe

Actually my reply was to Bob's post. You both provided similar solutions and Bob's will work as long
as the user has JavaScript enabled.

--
==============================================
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
 
J

John Prescott

Put in a transparent image and then create the hotspot on that.

Regards, John Prescott

Paymaster Systems Ltd,
Moorlands House, Oldfield Road, Bromley, Kent. BR1 2LE
TEL: 020 8467 6107 FAX: 020 8467 6121
e-mail: (e-mail address removed) website <http://www.oursite.co.uk>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top