zoom in/ouy does not work after installing sp2

  • Thread starter Thread starter Sue J Thomas
  • Start date Start date
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
 
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
 
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
 
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
 
Back
Top