How to disable right click save option?
5 posters
Page 1 of 1
How to disable right click save option?
How do I disable right click option on images to prevent users from claiming other players creations as their own?
Last edited by Dr.Kran on January 13th 2016, 6:46 am; edited 1 time in total
Re: How to disable right click save option?
You can't do that from my knowledge as there are plenty of other ways of getting an image. You can however have their names in each image which will decrease the amount of people who take the image(s).
Also, you have a few topics open in-progress, if they are solved can you please message in the topic and mark it solved so that people searching in the archives can recieve help by seeing the solution?
Also, you have a few topics open in-progress, if they are solved can you please message in the topic and mark it solved so that people searching in the archives can recieve help by seeing the solution?
Take Notes- Helper
- Posts : 2337
Reputation : 324
Language : English
Location : Forumountain
Re: How to disable right click save option?
Hello @Dr.Kran
There is a tutorial in the support forum from long years ago: https://help.forumotion.com/t50779-script-to-disable-the-right-click
Try it
There is a tutorial in the support forum from long years ago: https://help.forumotion.com/t50779-script-to-disable-the-right-click
Try it
Re: How to disable right click save option?
Yes this code works sort of the problem is if you turn java codes off in your browser you can get passed this systemYoshiGM wrote:Hello @Dr.Kran
There is a tutorial in the support forum from long years ago: https://help.forumotion.com/t50779-script-to-disable-the-right-click
Try it
there is no 100% foolproof way to do it as Google will place your items on there site unless you hide them from Google.
But hiding your form is not a good move as this can make you get less new members and bad ratings
Re: How to disable right click save option?
Anyways,
Google is your father.. You can simply search a code to block right click using javascript.
I just found this:
Edit the text in caps for your warning text that will appear if someone tries to use right click
Google is your father.. You can simply search a code to block right click using javascript.
I just found this:
- Code:
var message="YOUR MESSAGE GOES HERE"; function clickIE4(){ if (event.button==2){ alert(message); return false; } } function clickNS4(e){ if (document.layers||document.getElementById&&!document.all){ if (e.which==2||e.which==3){ alert(message); return false; } } } if (document.layers){ document.captureEvents(Event.MOUSEDOWN); document.onmousedown=clickNS4; } else if (document.all&&!document.getElementById){ document.onmousedown=clickIE4; } document.oncontextmenu=new Function("alert(message);return false")
Edit the text in caps for your warning text that will appear if someone tries to use right click
Re: How to disable right click save option?
Please refrain from moderating members, this is a staff member's job.Clashmune wrote:Also, you have a few topics open in-progress, if they are solved can you please message in the topic and mark it solved so that people searching in the archives can recieve help by seeing the solution?
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: How to disable right click save option?
YoshiGM wrote:Anyways,
Google is your father.. You can simply search a code to block right click using javascript.
What I really want is to put an image in front of the image so they save the transparent image instead.
Your code disables all out right clicks.
This is really to protect players images though.
I can always make 50 images with the same name as the protected one to solve the person finding a way problem too.
I dont know the name but Im guessing Image shield.
Re: How to disable right click save option?
as we have said we do not have a code to do this.
The only way to do this is with the codes gave.
None of them are 100% as just turning off the javascript on your browser will stop any code from working and you will still get the items you want.
best thing to do is make a hover over code that when you hover over any img it will show as a funny face or say a blank img but even that can be turned off by your members by just turning off javacodes in the browsers.
The only way to do this is with the codes gave.
None of them are 100% as just turning off the javascript on your browser will stop any code from working and you will still get the items you want.
best thing to do is make a hover over code that when you hover over any img it will show as a funny face or say a blank img but even that can be turned off by your members by just turning off javacodes in the browsers.
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum