Results 1 to 9 of 9

Thread: Disable copying a picture from website
      
   

  1. #1
    allan is offline Members
    Join Date
    May 2005
    Posts
    50

    Default Disable copying a picture from website

    How do I disable the copying of a picture from website? I mean if someone wants to copy an image from my website, the function will be disable so that one cannot copy it. Can that be done?

  2. #2
    VodaHost's Avatar
    VodaHost is offline General & Forum Administrator
    Join Date
    Mar 2005
    Location
    Wilmington, Delaware USA
    Posts
    11,428

    Default

    not really, if someone wants it all they have to do is hit "print page"

    VodaHost

    Your Website People!
    1-302-283-3777 North America / International
    07031847328 / United Kingdom

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

    Top 3 Best Sellers

    Web Hosting - Unlimited disk space & bandwidth.

    Reseller Hosting - Start your own web hosting business.

    Search Engine & Directory Submission - 300 directories + (Google,Yahoo,Bing)



  3. #3
    Pablo is offline Moderator
    Join Date
    May 2005
    Posts
    507

    Default

    This is technically impossible because of the way an Internet browser works:
    Before an image can be displayed in the browser it is copied to the users harddisk/memory, so even if you disable the right click or whatever, the image is already in the browser's cache making it easy to copy it to any location you want. Internet Explorer even has a nice Image toolbar which popups when you move your mouse over an image, making it very easy to steal your images.

    If all you want to do it disable the right mouse click, add this code to your page (using the insert HTML tool):

    <script language="JavaScript">
    <!--
    function NoRig***lick(e)
    {
    if(navigator.appName=="Netscape")
    {
    if(e.which==3||e.which==2)
    {
    return false;
    }
    }
    else
    {
    event.cancelBubble=true;
    event.returnValue=false;
    }
    }

    if(navigator.appName=="Netscape")
    window.captureEvents(Event.MOUSEDOWN)
    document.oncontextmenu=NoRig***lick;
    window.onmousedown=NoRig***lick;

    // --></script>
    Forum Moderator
    BlueVoda Specialist

  4. #4
    Sarah's Avatar
    Sarah is offline Colonel
    Join Date
    May 2005
    Location
    Wilmington, Delaware
    Posts
    513

    Default

    Well said Pablo, Can you do all the ladies in the forum a favour and upload your picture again.

    VodaHost

    Your Website People!
    1-302-283-3777 North America / International
    07031847328 / United Kingdom

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

    Top 3 Best Sellers

    Web Hosting - Unlimited disk space & bandwidth.

    Reseller Hosting - Start your own web hosting business.

    Search Engine & Directory Submission - 300 directories + (Google,Yahoo,Bing)



  5. #5
    Maddog's Avatar
    Maddog is offline Lieutenant Colonel
    Join Date
    May 2005
    Location
    UK
    Posts
    514

    Default

    hmmm not sure about that Sarah.......still think you the better looking one of the lot!
    www.bluevodaexchangelink.com
    BluevodaExchangeLink Help Center
    Bluevodaexchangelink Forum

    The only place for bluevoda site to be linked with!

  6. #6
    allan is offline Members
    Join Date
    May 2005
    Posts
    50

    Default

    Great! Now Pablo, how do I do the inset on the page? :)

  7. #7
    Pablo is offline Moderator
    Join Date
    May 2005
    Posts
    507

    Default

    Quote Originally Posted by allan
    Great! Now Pablo, how do I do the inset on the page? :)
    Use the Insert HTML tool.
    Forum Moderator
    BlueVoda Specialist

  8. #8
    countdukie is offline Private
    Join Date
    Jun 2005
    Posts
    1

    Default

    HI... I've tried to follow the script for disabling right click properties but i still get the save icon coming up. how do i remove that as well?

  9. #9
    Pablo is offline Moderator
    Join Date
    May 2005
    Posts
    507

    Default

    You can't do that from your webpage, it's a feature of Internet Explorer.
    Menubar: Tools|Internet Options|Advanced|MultiMedia|Enable Image Toolbar
    Forum Moderator
    BlueVoda Specialist

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Similar Threads

  1. How to drive low cost targeted traffic to your website
    By VodaBot in forum eBusiness and Concept Development Talk
    Replies: 17
    Last Post: 05-18-2009, 09:42 PM
  2. New Bluevoda Website?!
    By etower464i in forum Customer Website Reviews - Your Testing Ground
    Replies: 43
    Last Post: 06-13-2007, 06:34 PM
  3. Do I have to be number one in Google to have a successful website?
    By VodaBot in forum VodaHits SEO Services
    Replies: 4
    Last Post: 05-09-2007, 05:19 PM
  4. Five Easy Ways to Advertise and Promote Your Website
    By VodaBot in forum eBusiness and Concept Development Talk
    Replies: 0
    Last Post: 11-18-2005, 02:21 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49