I used to have Zoom in and zoom out on my rt click menu in
internet explorer 6.0.
My hard drive crashed and I had to reload Me O/S and then
upgraded to I.E.6 Sp1.
How do I get the zoom in/zoom out listings back on
rt/click menu in Internet Explorer?
Thanks, Jim Lombard

Re: I.E.6 SP1/NoZoom in/Zoom out showing on rt click in internet explorer by Alan

Alan
Tue Nov 04 14:03:33 CST 2003

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
--
Alan Edwards, MS MVP W95/98 Systems
http://dts-l.org/index.html

In microsoft.public.windowsme.general, "Jim Lombard"
<anonymous@discussions.microsoft.com> wrote:

>I used to have Zoom in and zoom out on my rt click menu in
>internet explorer 6.0.
>My hard drive crashed and I had to reload Me O/S and then
>upgraded to I.E.6 Sp1.
>How do I get the zoom in/zoom out listings back on
>rt/click menu in Internet Explorer?
>Thanks, Jim Lombard


Re: I.E.6 SP1/NoZoom in/Zoom out showing on rt click in internet explorer by Jim

Jim
Tue Nov 04 16:02:02 CST 2003

I have no idea what your trying to tell me?
Are you saying download from Ie5 Web Accessories?
>http://www.microsoft.com/windows/ie/previous/webaccess/def
ault.asp or what?
What image list?I don't have an "Images list"?
So there is no simple download for IE6 Sp1 for zoomin or
zoom out?
Jim Lombard
>-----Original Message-----
>IE5 Web Accessories:
>http://www.microsoft.com/windows/ie/previous/webaccess/def
ault.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
>--
>Alan Edwards, MS MVP W95/98 Systems
>http://dts-l.org/index.html
>
>In microsoft.public.windowsme.general, "Jim Lombard"
><anonymous@discussions.microsoft.com> wrote:
>
>>I used to have Zoom in and zoom out on my rt click menu
in
>>internet explorer 6.0.
>>My hard drive crashed and I had to reload Me O/S and
then
>>upgraded to I.E.6 Sp1.
>>How do I get the zoom in/zoom out listings back on
>>rt/click menu in Internet Explorer?
>>Thanks, Jim Lombard
>
>.
>

Re: I.E.6 SP1/NoZoom in/Zoom out showing on rt click in internet explorer by Alan

Alan
Tue Nov 04 16:17:45 CST 2003

Yes. I am suggesting you download (and install) the Web Accessories.
You won't have Images List until you install as it is part of Web
Accessories.
The download is simple enough. Zoom is part of the Web Accessories as
you should see at the page address I gave you.

...Alan
--
Alan Edwards, MS MVP W95/98 Systems
http://dts-l.org/index.html

In microsoft.public.windowsme.general, "Jim Lombard"
<anonymous@discussions.microsoft.com> wrote:

>I have no idea what your trying to tell me?
>Are you saying download from Ie5 Web Accessories?
>>http://www.microsoft.com/windows/ie/previous/webaccess/def
>ault.asp or what?
>What image list?I don't have an "Images list"?
>So there is no simple download for IE6 Sp1 for zoomin or
>zoom out?
>Jim Lombard
>>-----Original Message-----
>>IE5 Web Accessories:
>>http://www.microsoft.com/windows/ie/previous/webaccess/def
>ault.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
>>--
>>Alan Edwards, MS MVP W95/98 Systems
>>http://dts-l.org/index.html
>>
>>In microsoft.public.windowsme.general, "Jim Lombard"
>><anonymous@discussions.microsoft.com> wrote:
>>
>>>I used to have Zoom in and zoom out on my rt click menu
>in
>>>internet explorer 6.0.
>>>My hard drive crashed and I had to reload Me O/S and
>then
>>>upgraded to I.E.6 Sp1.
>>>How do I get the zoom in/zoom out listings back on
>>>rt/click menu in Internet Explorer?
>>>Thanks, Jim Lombard
>>
>>.
>>


Re: I.E.6 SP1/NoZoom in/Zoom out showing on rt click in internet explorer by Jim

Jim
Tue Nov 04 18:35:45 CST 2003

Thanks Alan, did what you suggested.downloaded Web
Accessories for IE5x and still have no
zoomin/zoomout on rt click menu.
got "Toggle images" and "Search" in links list but no
zoomin/zoomout on rt click menu.Maybe it's been modified
by Microsoft because of the bug you mentioned or maybe I
have to turn it on somewhere?Internet options?I notice my
encoding is set on unicode- (Utf-8).Is that correct?
Thanks, sorry for being so dumb.Jim Lombard
>-----Original Message-----
>Yes. I am suggesting you download (and install) the Web
Accessories.
>You won't have Images List until you install as it is
part of Web
>Accessories.
>The download is simple enough. Zoom is part of the Web
Accessories as
>you should see at the page address I gave you.
>
>....Alan
>--
>Alan Edwards, MS MVP W95/98 Systems
>http://dts-l.org/index.html
>
>In microsoft.public.windowsme.general, "Jim Lombard"
><anonymous@discussions.microsoft.com> wrote:
>
>>I have no idea what your trying to tell me?
>>Are you saying download from Ie5 Web Accessories?
>>>http://www.microsoft.com/windows/ie/previous/webaccess/d
ef
>>ault.asp or what?
>>What image list?I don't have an "Images list"?
>>So there is no simple download for IE6 Sp1 for zoomin or
>>zoom out?
>>Jim Lombard
>>>-----Original Message-----
>>>IE5 Web Accessories:
>>>http://www.microsoft.com/windows/ie/previous/webaccess/d
ef
>>ault.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
>>>--
>>>Alan Edwards, MS MVP W95/98 Systems
>>>http://dts-l.org/index.html
>>>
>>>In microsoft.public.windowsme.general, "Jim Lombard"
>>><anonymous@discussions.microsoft.com> wrote:
>>>
>>>>I used to have Zoom in and zoom out on my rt click
menu
>>in
>>>>internet explorer 6.0.
>>>>My hard drive crashed and I had to reload Me O/S and
>>then
>>>>upgraded to I.E.6 Sp1.
>>>>How do I get the zoom in/zoom out listings back on
>>>>rt/click menu in Internet Explorer?
>>>>Thanks, Jim Lombard
>>>
>>>.
>>>
>
>.
>

Re: I.E.6 SP1/NoZoom in/Zoom out showing on rt click in internet explorer by Jim

Jim
Tue Nov 04 18:47:08 CST 2003

So sorry Alan,zoomin/ zoomout is on my rt click menu.You
have to be pointing at an image! Sorry for being so dumb
and thanks for your patience working with us dumbies.I
apologize.Respectfully Jim Lombard .....and thank you
>-----Original Message-----
>Yes. I am suggesting you download (and install) the Web
Accessories.
>You won't have Images List until you install as it is
part of Web
>Accessories.
>The download is simple enough. Zoom is part of the Web
Accessories as
>you should see at the page address I gave you.
>
>....Alan
>--
>Alan Edwards, MS MVP W95/98 Systems
>http://dts-l.org/index.html
>
>In microsoft.public.windowsme.general, "Jim Lombard"
><anonymous@discussions.microsoft.com> wrote:
>
>>I have no idea what your trying to tell me?
>>Are you saying download from Ie5 Web Accessories?
>>>http://www.microsoft.com/windows/ie/previous/webaccess/d
ef
>>ault.asp or what?
>>What image list?I don't have an "Images list"?
>>So there is no simple download for IE6 Sp1 for zoomin or
>>zoom out?
>>Jim Lombard
>>>-----Original Message-----
>>>IE5 Web Accessories:
>>>http://www.microsoft.com/windows/ie/previous/webaccess/d
ef
>>ault.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
>>>--
>>>Alan Edwards, MS MVP W95/98 Systems
>>>http://dts-l.org/index.html
>>>
>>>In microsoft.public.windowsme.general, "Jim Lombard"
>>><anonymous@discussions.microsoft.com> wrote:
>>>
>>>>I used to have Zoom in and zoom out on my rt click
menu
>>in
>>>>internet explorer 6.0.
>>>>My hard drive crashed and I had to reload Me O/S and
>>then
>>>>upgraded to I.E.6 Sp1.
>>>>How do I get the zoom in/zoom out listings back on
>>>>rt/click menu in Internet Explorer?
>>>>Thanks, Jim Lombard
>>>
>>>.
>>>
>
>.
>

Re: I.E.6 SP1/NoZoom in/Zoom out showing on rt click in internet explorer by Alan

Alan
Tue Nov 04 20:41:54 CST 2003

Hi Jim,

Thanks for the feedback. Glad you managed to sort it.

...Alan
--
Alan Edwards, MS MVP W95/98 Systems
http://dts-l.org/index.html

In microsoft.public.windowsme.general, "Jim Lombard"
<anonymous@discussions.microsoft.com> wrote:

>So sorry Alan,zoomin/ zoomout is on my rt click menu.You
>have to be pointing at an image! Sorry for being so dumb
>and thanks for your patience working with us dumbies.I
>apologize.Respectfully Jim Lombard .....and thank you
>>-----Original Message-----
>>Yes. I am suggesting you download (and install) the Web
>Accessories.
>>You won't have Images List until you install as it is
>part of Web
>>Accessories.
>>The download is simple enough. Zoom is part of the Web
>Accessories as
>>you should see at the page address I gave you.
>>
>>....Alan
>>--
>>Alan Edwards, MS MVP W95/98 Systems
>>http://dts-l.org/index.html
>>
>>In microsoft.public.windowsme.general, "Jim Lombard"
>><anonymous@discussions.microsoft.com> wrote:
>>
>>>I have no idea what your trying to tell me?
>>>Are you saying download from Ie5 Web Accessories?
>>>>http://www.microsoft.com/windows/ie/previous/webaccess/d
>ef
>>>ault.asp or what?
>>>What image list?I don't have an "Images list"?
>>>So there is no simple download for IE6 Sp1 for zoomin or
>>>zoom out?
>>>Jim Lombard
>>>>-----Original Message-----
>>>>IE5 Web Accessories:
>>>>http://www.microsoft.com/windows/ie/previous/webaccess/d
>ef
>>>ault.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
>>>>--
>>>>Alan Edwards, MS MVP W95/98 Systems
>>>>http://dts-l.org/index.html
>>>>
>>>>In microsoft.public.windowsme.general, "Jim Lombard"
>>>><anonymous@discussions.microsoft.com> wrote:
>>>>
>>>>>I used to have Zoom in and zoom out on my rt click
>menu
>>>in
>>>>>internet explorer 6.0.
>>>>>My hard drive crashed and I had to reload Me O/S and
>>>then
>>>>>upgraded to I.E.6 Sp1.
>>>>>How do I get the zoom in/zoom out listings back on
>>>>>rt/click menu in Internet Explorer?
>>>>>Thanks, Jim Lombard
>>>>
>>>>.
>>>>
>>
>>.
>>