Pop-up when I roll over a picture

G

Guest

How do I disable/re-enable the pop-up menu that appears when I roll over a
picture (like when I'm on the net, I right-click on a picture, hit "save",
then when it pops up the little menu pops up and I hit a button from that
that was blocking save)?
 
J

John Inzer

rurouni_crow said:
How do I disable/re-enable the pop-up menu that appears
when I roll over a picture (like when I'm on the net, I
right-click on a picture, hit "save", then when it pops
up the little menu pops up and I hit a button from that
that was blocking save)?
====================================
Try this...

Open IE and go to...Tools / Internet Options / Advanced tab...

Scroll down to...Multimedia...

Uncheck...Enable Image Toolbar...Apply / OK.

--

John Inzer
MS Picture It! MVP
How to ask a newsgroup question:
http://support.microsoft.com/kb/555375
 
D

David Candy

My Pictures Photo Support

--------------------------------------------------------------------------------

This is preliminary documentation and is subject to change.
My Pictures is a simple feature that allows users to more easily save, print, and email images found in web pages, without having to right-click the image. The My Pictures user interface is a small set of common buttons that appear in a hovering toolbar when a user mouses over an image.

a.. Background
b.. Customization
c.. Advanced Topics
d.. Related Topics
Background
When the user visits a web site and mouses over an image that meets particular requirements, the My Pictures hovering toolbar will appear after one half second, and will disappear immediately after the user moves the cursor off the image. The hovering toolbar has three to four buttons depending upon the browser client and user operating system. They are Save this image, Print this image, Send this image in an e-mail, and Open My Pictures folder.

The Save this image button opens the Save Picture dialog box and allows you to save the image somewhere on your system.

The Print this image button opens the Print dialog box allowing you to specify the printer and additional options before sending the image to the printer.

The Send this image in an e-mail button opens a new email message with the default email client and includes the picture as an attachment to the message.

The Open My Pictures folder button opens the My Pictures folder within Microsoft® Windows® Explorer for browsing. The image cannot be saved to the My Pictures folder using this button.

This feature is not intended to be used with every image found on a Web page. This feature is intended for images that adhere to one or more of the following guidelines:

a.. Images that are greater than 130 pixels wide by 130 pixels high
b.. High resolution images, such as a digital photograph
c.. Web galleries of scanned photos and images
d.. Other images specifically intended for download by the web page developer

This feature is not intended to be used with the following image types:

a.. An image that would be used for a web page design layout or similar function, such as an image map
b.. An image or group of images used together to create a pattern
c.. A thumbnail linked to a larger image or new web page
d.. A banner ad
e.. A company or web page logo
f.. A background image

The hovering toolbar has a context menu that can be accessed by right-clicking on the hovering toolbar while it is displayed. This menu presents the option to turn off the My Pictures hovering toolbar feature, as well as help for the feature.

Note This feature will also update the context menu when right-clicking an image with the E-mail Picture and Print Picture options. These two options function as the equivalent button in the hovering toolbar does, and are described previously.
Customization
This feature is able to be turned off in multiple ways. To globally turn this feature off, right-click the mouse on the toolbar when the toolbar is being displayed and click, "Disable image toolbar". Alternatively, go to the Advanced tab of the Internet Options which is located on the Tools menu. Uncheck the "Enable Image Toolbar" checkbox and click the OK button.

A web developer is able to turn this feature off on a page-by-page basis, using the HTTP-EQUIV and CONTENT attributes of the meta element. Setting HTTP-EQUIV="imagetoolbar" and CONTENT="no" (or flase) disables the image toolbar for the entire page.

<HEAD>
<META HTTP-EQUIV="imagetoolbar" CONTENT="no">
</HEAD>A Web developer is able to turn this feature off on an image-by-image basis using the GALLERYIMG attribute of the IMG element. To do this, set the GALLERYIMG attribute to no or false.

<IMG SRC="mypicture.jpg" HEIGHT="200" WIDTH="200" GALLERYIMG="no">If the image toolbar is turned off for the entire page by using the META element, an individual image can still display the toolbar by using the GALLERYIMG attribute of the IMG element..

<HTML>
<HEAD>
<META HTTP-EQUIV="imagetoolbar" CONTENT="no">
</HEAD>

<BODY>
....
<IMG SRC="mypicture.jpg" HEIGHT="100" WIDTH="100" GALLERYIMG="yes">
....
</BODY>
</HTML>Advanced Topics
The image toolbar is customizable by changing or adding keys in the registry. The following is a list of registry entries and what effect they have on the image toolbar, and can be found in the HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\main key.

Name Type Value Description
Enable_Image_Toolbar REG_SZ yes | no Default value is yes. Setting this value to no will disable the image toolbar for the particular user that is logged into the machine at that time.
Offset REG_DWORD 10 Default value is 10. This tells the image toolbar how many pixels to space itself from the top and left edge of the image. This registry entry is missing by default. The user must add this entry to change the default value.
Image_Filter REG_DWORD 130 Default value is 130. This tells the image toolbar how many pixels wide and high the image must be in order to display the image toolbar. This registry entry is missing by default. The user must add this entry to change the default value.


Note The registry entries that control the image toolbar are set on a user by user basis. Changing these values will only change the behavior for the user profile in use.
Related Topics

a.. galleryImg
 

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