zoom in--zoom out

A

aDavidM

It used to be when I opened a thumbnail and enlarged it, I
could right click the picture and have the option to zoom
in or out. Now that option no longer appears on right
click. Where did it go and how do I get it back??
Thanks
 
J

Jon Kennedy

You need to install the IE 5 Web Accessories:
http://www.microsoft.com/windows/ie/previous/webaccess/ie5wa.asp
However, that feature has an error in it's code that may need to be fixed...

It's because whom ever wrote the HTML file for zooming made a mistake. You
can
correct it by adjusting the ZOOMIN.HTML and ZOOMOUT.HTML files located in
your
Windows\Web folder. To correct this, change the following lines (you can
edit the
files with Note Pad) :

h = parentwin.event.srcElement.height * 2;
parentwin.event.srcElement.height = h;
w = parentwin.event.srcElement.width * 2;
parentwin.event.srcElement.width = w;

To read as follows:

h = parentwin.event.srcElement.height * 2;
w = parentwin.event.srcElement.width * 2;
parentwin.event.srcElement.height = h;
parentwin.event.srcElement.width = w;

- Do the same for ZOOMOUT.HTM, substituting the * with the /.
 
A

aDavidm

Thanks! I downloaded the IE 5 accessories, even though I
have IE6 and that did the trick! adm
 
B

Bob Horvath

On Wed, 14 Jan 2004 18:28:32 -0800, Bob Horvath wrote:


THere is another program called IE Zoomer that is a lot better. The
one with IE pixelates if you zoom too many times, but Zoomer allows
you to zoom in many times and it does not pixelate. If you are
interested, e-mail me.
Bob
 

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

Similar Threads

Zoom imagess 3
Right click Zoom anomaly 4
Change Zoom Level 1
Lost zoom 3
Zoom in and out function 6
zoom settings changing 1
zoom in and out feature 1
Scrolling Picture and "Super Zoom" 1

Top