Zooming in FrontPage 2002

  • Thread starter Thread starter AdamB
  • Start date Start date
A

AdamB

Is it possible to zoom the Normal Page view in FP2002? The Zoom
dropdown list is disabled except in Navigation view & [CTRL]+Scroll
wheel works in HTML view but not in 'Preview' or 'Normal'. The reason
I want to zoom in on my page is to trace out some hotspots for an
image map more accurately. Thanks for any suggestions.
 
No zoom is available
--




| Is it possible to zoom the Normal Page view in FP2002? The Zoom
| dropdown list is disabled except in Navigation view & [CTRL]+Scroll
| wheel works in HTML view but not in 'Preview' or 'Normal'. The reason
| I want to zoom in on my page is to trace out some hotspots for an
| image map more accurately. Thanks for any suggestions.
 
A zoom sure would be handy for that...

You could open the image up in an image editor and zoom in to get precise
points, then manually build your hotspot entries. For example, I created an
image map in FrontPage and this is the code that was generated:

<p><map name="FPMap0">
<area href="http://www.yahoo.com" shape="polygon" coords="112, 33, 116, 61,
132, 84, 156, 92, 165, 114, 143, 120, 93, 116, 79, 90, 92, 49">
</map>
<img border="0" src="http://www.example.com/Sample.jpg" usemap="#FPMap0"
width="283" height="212"></p>

Those coordinates are just a series of X,Y values (i.e. coords="X1, Y1, X2,
Y2, X3, Y3...Xn, Yn") describing the hotspot.
 
Back
Top