zoom in/ouy does not work after installing sp2

S

Sue J Thomas

When I right click in order to see a larger picture or a larger
printed page, the ''zoom in' and zoom out settings do not
work after upgrading to sp2.
Maybe this is part of a 'power toy' from MSFT.
Sue
 
P

PA Bear

While Internet Explorer Web Accessories
(http://www.microsoft.com/windows/ie/previous/webaccess/ie5wa.mspx) are not
supported in IE6, let alone WinXP, most of 'em still work fine in WinXP
SP2...'cept for Zoom In/Zoom Out.

<whispering> ...but see
http://www.mvps.org/winhelp2002/ieplus.htm#Exceptions

Also of interest:

Internet Explorer 5 Power Tweaks Web Accessories:
http://www.microsoft.com/windows/ie/previous/webaccess/pwrtwks.mspx

Microsoft PowerToys for Windows XP:
http://www.microsoft.com/windowsxp/downloads/powertoys/xppowertoys.mspx
 
F

Frank Saunders, MS_MVP OE

I have not checked recently if the error has been corrected.
See this old post by Ron Vernon MVP.
------quote
This is a bug in the web accessories.

To fix it, use Notepad to open ZOOMIN.HTM (found usually in
WINDOWS\WEB ),
and edit it to read both image dimensions before setting any of them:

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

new contents (the 3rd line in the fragment above moved up):
....
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.
-----end quote
 
S

Sue J Thomas

Oh, thanks so very much! This worked!
Also, in the old zoomin(out).HTM files, there was a space
between the lines.
I do have to click right on the pictures, though, so cannot
zoom the whole page. Sometimes have to refresh the page
in order to re-establish it...
Sue
 

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