Right click utilities

  • Thread starter Thread starter Michael Jacobs
  • Start date Start date
M

Michael Jacobs

I can remember back in IE 5.0 there was a utility suite that included a
"Open Frame in New Window" and a few other tweeks in the upgrade.


Does anyone know of something like this for 6.0?


I installed this on one of my 5.o systems and with upgrades to 5.5 and 6.0
the feature still exist... but I can not find this utility in 6.0.


E-mail to my business E-mail below.
Thanks
Michael Jacobs
 
Use the same one.
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
 

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

Back
Top