Kreative Flow Designs
Thanks for visiting Kreative Flow. You'll recieve the best tutorials, resources and graphic information here.

Do register if you are a guest for exclusive content only for members!



Join the forum, it's quick and easy

Kreative Flow Designs
Thanks for visiting Kreative Flow. You'll recieve the best tutorials, resources and graphic information here.

Do register if you are a guest for exclusive content only for members!

Kreative Flow Designs
Would you like to react to this message? Create an account in a few clicks or log in to continue.

pictures unsaveable on websites

+5
finnianm
erione
AxiuM1485
Adil
someoneinsane
9 posters

Go down

pictures unsaveable on websites Empty pictures unsaveable on websites

Post by someoneinsane Thu 26 Mar 2009, 11:38 am

What is the HTML code so people dont have the ability to rightclick and "Save Image As" and take the picture.
Like on this website
someoneinsane
someoneinsane
Top Poster
Top Poster

Number of posts : 789
Flow Points : 852
Reputation : 9
Warnings :
pictures unsaveable on websites Left_bar_bleue0 / 1000 / 100pictures unsaveable on websites Right_bar_bleue

Mood : pictures unsaveable on websites Ekon6q

Back to top Go down

pictures unsaveable on websites Empty Re: pictures unsaveable on websites

Post by Adil Thu 26 Mar 2009, 11:48 am

You mean where you cant use rightclick?
Adil
Adil
Founder
Founder

Number of posts : 2488
Flow Points : 3875
Reputation : 43
Warnings :
pictures unsaveable on websites Left_bar_bleue0 / 1000 / 100pictures unsaveable on websites Right_bar_bleue

Mood : pictures unsaveable on websites 2ezmpsz

http://www.kreativeflow.net

Back to top Go down

pictures unsaveable on websites Empty Re: pictures unsaveable on websites

Post by someoneinsane Thu 26 Mar 2009, 12:05 pm

Yes, thats what i mean.
Do you know the code?
someoneinsane
someoneinsane
Top Poster
Top Poster

Number of posts : 789
Flow Points : 852
Reputation : 9
Warnings :
pictures unsaveable on websites Left_bar_bleue0 / 1000 / 100pictures unsaveable on websites Right_bar_bleue

Mood : pictures unsaveable on websites Ekon6q

Back to top Go down

pictures unsaveable on websites Empty Re: pictures unsaveable on websites

Post by Adil Thu 26 Mar 2009, 12:37 pm

try tools > view code or something. Try to find the image there manually ? sorry.
Adil
Adil
Founder
Founder

Number of posts : 2488
Flow Points : 3875
Reputation : 43
Warnings :
pictures unsaveable on websites Left_bar_bleue0 / 1000 / 100pictures unsaveable on websites Right_bar_bleue

Mood : pictures unsaveable on websites 2ezmpsz

http://www.kreativeflow.net

Back to top Go down

pictures unsaveable on websites Empty Re: pictures unsaveable on websites

Post by AxiuM1485 Thu 26 Mar 2009, 12:50 pm

I used this once way back... i found the code somewhere lol.. i dont remeber it off hand but i'll see if i can find it for you.. the one i used i made a msgbox pop up to tell people they can't right click Smile

AxiuM1485
Top Poster
Top Poster

Number of posts : 769
Flow Points : 1524
Reputation : 17
Warnings :
pictures unsaveable on websites Left_bar_bleue0 / 1000 / 100pictures unsaveable on websites Right_bar_bleue

Mood : pictures unsaveable on websites Ipyw0k

Back to top Go down

pictures unsaveable on websites Empty Re: pictures unsaveable on websites

Post by erione Thu 26 Mar 2009, 9:21 pm

I don't know the code though some host have some features which disables right click, including everything and not only pictures.
erione
erione
Global Moderator
Global Moderator

Number of posts : 1285
Flow Points : 2110
Reputation : 21
Warnings :
pictures unsaveable on websites Left_bar_bleue0 / 1000 / 100pictures unsaveable on websites Right_bar_bleue

Mood : pictures unsaveable on websites 2eoz5ef

Back to top Go down

pictures unsaveable on websites Empty Re: pictures unsaveable on websites

Post by finnianm Wed 01 Apr 2009, 7:05 am

I would be able to use this for some on my website.... for business, then i could post alot more logos i've done, because clients don't want them to be able to be downloaded.... tell me if you find it!
finnianm
finnianm
Graphics Leader
Graphics Leader

Number of posts : 1334
Flow Points : 2765
Reputation : 78
Warnings :
pictures unsaveable on websites Left_bar_bleue0 / 1000 / 100pictures unsaveable on websites Right_bar_bleue

Mood : pictures unsaveable on websites 29q1i6v

http://www.finnianm.com

Back to top Go down

pictures unsaveable on websites Empty Re: pictures unsaveable on websites

Post by AxiuM1485 Wed 01 Apr 2009, 7:41 am

Here you go put these codes in the
Code:
<head> </head>
.

No Right Click On Images
Code:

<SCRIPT LANGUAGE="JavaScript1.1">

<!-- Begin
function right(e) {
if (navigator.appName == 'Netscape' &&
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' &&
(event.button == 2 || event.button == 3)) {
alert("I'm sorry, The Right click option on your mouse has been disabled for the download window pages.");
return false;
}
return true;
}
 
document.onmousedown=right;
document.onmouseup=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=right;
window.onmouseup=right;
//  End -->
</script>

This one is to prevent people from copying text

Code:

<script language="JavaScript1.2">
 
function disableselect(e){
return false
}
 
function reEnable(){
return true
}
 
//if IE4+
document.onselectstart=new Function ("return false")
 
//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>

I haven't tested these to make sure if they work or not, but they should. Enjoy

AxiuM1485
Top Poster
Top Poster

Number of posts : 769
Flow Points : 1524
Reputation : 17
Warnings :
pictures unsaveable on websites Left_bar_bleue0 / 1000 / 100pictures unsaveable on websites Right_bar_bleue

Mood : pictures unsaveable on websites Ipyw0k

Back to top Go down

pictures unsaveable on websites Empty Re: pictures unsaveable on websites

Post by someoneinsane Wed 01 Apr 2009, 9:14 am

Thanks Axium, i shall definitly use this in the future.
someoneinsane
someoneinsane
Top Poster
Top Poster

Number of posts : 789
Flow Points : 852
Reputation : 9
Warnings :
pictures unsaveable on websites Left_bar_bleue0 / 1000 / 100pictures unsaveable on websites Right_bar_bleue

Mood : pictures unsaveable on websites Ekon6q

Back to top Go down

pictures unsaveable on websites Empty Re: pictures unsaveable on websites

Post by AxiuM1485 Wed 01 Apr 2009, 9:47 am

Glad to help Smile

AxiuM1485
Top Poster
Top Poster

Number of posts : 769
Flow Points : 1524
Reputation : 17
Warnings :
pictures unsaveable on websites Left_bar_bleue0 / 1000 / 100pictures unsaveable on websites Right_bar_bleue

Mood : pictures unsaveable on websites Ipyw0k

Back to top Go down

pictures unsaveable on websites Empty Re: pictures unsaveable on websites

Post by erione Thu 02 Apr 2009, 5:32 am

Thanks also Axium, I might use that in the future ^^
erione
erione
Global Moderator
Global Moderator

Number of posts : 1285
Flow Points : 2110
Reputation : 21
Warnings :
pictures unsaveable on websites Left_bar_bleue0 / 1000 / 100pictures unsaveable on websites Right_bar_bleue

Mood : pictures unsaveable on websites 2eoz5ef

Back to top Go down

pictures unsaveable on websites Empty Re: pictures unsaveable on websites

Post by 88cool Mon 06 Apr 2009, 7:19 pm

I'll be sure and keep this in mind when I have an important image that I worked on for a long time. Thank you.

88cool
New Member
New Member

Number of posts : 19
Flow Points : 39
Reputation : 0
Warnings :
pictures unsaveable on websites Left_bar_bleue0 / 1000 / 100pictures unsaveable on websites Right_bar_bleue

Mood : pictures unsaveable on websites NoMood-1

Back to top Go down

pictures unsaveable on websites Empty Re: pictures unsaveable on websites

Post by Henryz Wed 08 Apr 2009, 5:18 am

Only wish that it couldn't be disabled Sad Web Developer plugin would ruin it Neutral
Henryz
Henryz
Gold Member
Gold Member

Number of posts : 109
Flow Points : 241
Reputation : 3
Warnings :
pictures unsaveable on websites Left_bar_bleue0 / 1000 / 100pictures unsaveable on websites Right_bar_bleue

Mood : pictures unsaveable on websites 34689ar

http://www.webvicious.com, http://www.Henry.Brown.Name

Back to top Go down

pictures unsaveable on websites Empty Re: pictures unsaveable on websites

Post by tommo Sat 09 May 2009, 6:52 am

if you have google chrome just use ctrl+u even if right click is disabled it still works
tommo
tommo
Adv. Member
Adv. Member

Number of posts : 260
Flow Points : 155
Reputation : 9
Warnings :
pictures unsaveable on websites Left_bar_bleue25 / 10025 / 100pictures unsaveable on websites Right_bar_bleue

Mood : pictures unsaveable on websites 4uxqfo

Back to top Go down

pictures unsaveable on websites Empty Re: pictures unsaveable on websites

Post by Bekki Mon 11 May 2009, 6:31 am

Thanks for the code. May use it in the future. Like when I do tutorials for my site and not wanting the people to take the images.
Bekki
Bekki
Gold Member
Gold Member

Number of posts : 124
Flow Points : 240
Reputation : 4
Warnings :
pictures unsaveable on websites Left_bar_bleue0 / 1000 / 100pictures unsaveable on websites Right_bar_bleue

Mood : pictures unsaveable on websites E6r3p2

Back to top Go down

pictures unsaveable on websites Empty Re: pictures unsaveable on websites

Post by AxiuM1485 Mon 11 May 2009, 7:27 am

Smile your welcome. Like i said though this isn't a full proof way but, its something. There is always a way around something though.

AxiuM1485
Top Poster
Top Poster

Number of posts : 769
Flow Points : 1524
Reputation : 17
Warnings :
pictures unsaveable on websites Left_bar_bleue0 / 1000 / 100pictures unsaveable on websites Right_bar_bleue

Mood : pictures unsaveable on websites Ipyw0k

Back to top Go down

pictures unsaveable on websites Empty Re: pictures unsaveable on websites

Post by Sponsored content


Sponsored content


Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum