Zoom & Unzoom.htm

G

Gary

I think it was IE 5 Power Tools that had a Zoom/Unzoom for
pics (on right click). I lost them with XP.

Anyway to get this tool back? No luck on MS site so far.
Thanks for any suggestions!
 
R

Ramesh [MVP]

Hi Gary,

From MVPs Alan Edwards and Ronnie Vernon:

<quote>

IE5 Web Accessories:
http://www.microsoft.com/windows/ie/previous/webaccess/default.asp

For IE6, a minor problem is in Images List you need to press F5 to refresh
the blank list.

This problem has always been there:
From a previous post by Ronnie Vernon MVP:

There 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.

....Alan

</quote>

--
Ramesh, Microsoft MVP
Window XP Shell/User
http://www.mvps.org/sramesh2k


I think it was IE 5 Power Tools that had a Zoom/Unzoom for
pics (on right click). I lost them with XP.

Anyway to get this tool back? No luck on MS site so far.
Thanks for any suggestions!
 
G

Guest

Thanks Ramesh !!!

That's EXACTELY what I've been searching for!!!

Much appreciated,
Gary
 
J

Jim Macklin

It says on the download page that these are not for use on
IE 6 but they work just fine for zoom in/out and the other
functions are handy.


message | Hi Gary,
|
| From MVPs Alan Edwards and Ronnie Vernon:
|
| <quote>
|
| IE5 Web Accessories:
|
http://www.microsoft.com/windows/ie/previous/webaccess/default.asp
|
| For IE6, a minor problem is in Images List you need to
press F5 to refresh
| the blank list.
|
| This problem has always been there:
| From a previous post by Ronnie Vernon MVP:
|
| There 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.
|
| ...Alan
|
| </quote>
|
| --
| Ramesh, Microsoft MVP
| Window XP Shell/User
| http://www.mvps.org/sramesh2k
|
|
message
| | I think it was IE 5 Power Tools that had a Zoom/Unzoom for
| pics (on right click). I lost them with XP.
|
| Anyway to get this tool back? No luck on MS site so far.
| Thanks for any suggestions!
|
|
 

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