disable Microsoft's image toolbar

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Sam Carleton

    disable Microsoft's image toolbar

    The subject says it all, how do I go about disableing the image
    toolbar IE throughts up when you hover over an images? I found some
    code to disable the right menu, but not the toolbar.

    Sam
  • KC Wong

    #2
    Re: disable Microsoft's image toolbar

    > The subject says it all, how do I go about disableing the image[color=blue]
    > toolbar IE throughts up when you hover over an images? I found some
    > code to disable the right menu, but not the toolbar.[/color]

    I don't know.

    But let me tell you, it's futile to prevent users storing your images. Once
    they can see it on screen, you can consider the image stolen.

    And I bet 80% of the people here can still activate the right-click menu on
    your pages.


    KC


    Comment

    • JimMenees

      #3
      Re: disable Microsoft's image toolbar

      You can use a meta tag in the head section of your html document to disable the
      tool bar. I've seen two formats used:
      <meta http-equiv="imagetoo lbar" content="no">
      <meta http-equiv="imagetoo lbar" content="false" >

      hope that helps,

      Jim

      Comment

      • Stephen

        #4
        Re: disable Microsoft's image toolbar

        Sam Carleton wrote:[color=blue]
        > The subject says it all, how do I go about disableing the image
        > toolbar IE throughts up when you hover over an images? I found some
        > code to disable the right menu, but not the toolbar.
        >
        > Sam[/color]

        You may ...

        set a particular switch in IE configs

        Tools/Internet Options/Advanced/Multimedia/Enable Image Toolbar
        (requires restart) (...or similar...)

        or

        add
        <meta http-equiv="imagetoo lbar" content="no">
        in the <head> of your document.

        Regards
        Stephen

        Comment

        • DU

          #5
          Re: disable Microsoft's image toolbar

          Sam Carleton wrote:
          [color=blue]
          > The subject says it all, how do I go about disableing the image
          > toolbar IE throughts up when you hover over an images? I found some
          > code to disable the right menu, but not the toolbar.
          >
          > Sam[/color]

          <meta http-equiv="imagetoo lbar" content="no">

          You should search a bit: this info was fairly easy to find with
          google.com, in newsgroup archives, at MSDN, etc...


          DU
          --
          Javascript and Browser bugs:

          - Resources, help and tips for Netscape 7.x users and Composer
          - Interactive demos on Popup windows, music (audio/midi) in Netscape 7.x


          Comment

          Working...