Copyright Message

TC
Posted By
Tom Curtis
Jan 18, 2004
Views
396
Replies
18
Status
Closed
I have seen where if you right click on an image a box with a copright message appears. Can this be done in photoshop.

MacBook Pro 16” Mockups 🔥

– in 4 materials (clay versions included)

– 12 scenes

– 48 MacBook Pro 16″ mockups

– 6000 x 4500 px

E
edjh
Jan 18, 2004
Tom Curtis wrote:
I have seen where if you right click on an image a box with a copright message appears. Can this be done in photoshop.
Image where? On the web? Probably an alt tag.


Comic book sketches and artwork:
http://www.sover.net/~hannigan/edjh.html
V
Voivod
Jan 18, 2004
On Sun, 18 Jan 2004 10:16:13 +0000 (UTC), "Tom Curtis" scribbled:

I have seen where if you right click on an image a box with a copright message appears. Can this be done in photoshop.

Its an EASILY defeated javascript that’s added to web sites by people who don’t know what they’re doing. No, it can’t be done in Photoshop, it shouldn’t be done at all.
V
Voivod
Jan 18, 2004
On Sun, 18 Jan 2004 12:46:51 GMT, edjh scribbled:

Tom Curtis wrote:
I have seen where if you right click on an image a box with a copright message appears. Can this be done in photoshop.
Image where? On the web? Probably an alt tag.

I’m pretty sure, especially from the ‘right click’ reference that he’s talking about that stupid javascript code to
disable the right click menu on web pages in some
imaginary hopes that people won’t be able to get a
copy of your vacation pictures.
A
Alan
Jan 18, 2004
"Voivod" wrote in message
On Sun, 18 Jan 2004 10:16:13 +0000 (UTC), "Tom Curtis" scribbled:

I have seen where if you right click on an image a box with a copright message appears. Can this be done in photoshop.

Its an EASILY defeated javascript that’s added to web sites by people who don’t know what they’re doing. No, it can’t be done in Photoshop, it shouldn’t be done at all.
As Burger boy won’t help, but again can only criticise, here is a java script for copyright:-

<html>

<head>

<title>JavaScript 1</title>

</head>

<body>

Go to the <a href="gallery.html" onClick="alert(‘Note: All the pictures displayed\nin the gallery are copyright.’)">gallery</a>

</body>

</html>
A
Alan
Jan 18, 2004
"edjh" wrote in message
Tom Curtis wrote:
I have seen where if you right click on an image a box with a copright message appears. Can this be done in photoshop.
Image where? On the web? Probably an alt tag.
Here is a no right click script:-

<!– HTML Markup startspan –>

<script language="JavaScript">

<!–

// No rightclick script.

var message="ITS NICER TO ASK!!!!";

// Don\’t edit below!

function click(e) {

if (document.all) {

if (event.button == 2) {

alert(message);

return false;

}

}

if (document.layers) {

if (e.which == 3) {

alert(message);

return false;

}

}

}

if (document.layers) {

document.captureEvents(Event.MOUSEDOWN);

}

document.onmousedown=click;

// –>

</script>

<!– HTML Markup endspan –>
V
Voivod
Jan 18, 2004
On Sun, 18 Jan 2004 14:00:41 +0000 (UTC), "Alan" scribbled:

"Voivod" wrote in message
On Sun, 18 Jan 2004 10:16:13 +0000 (UTC), "Tom Curtis" scribbled:

I have seen where if you right click on an image a box with a copright message appears. Can this be done in photoshop.

Its an EASILY defeated javascript that’s added to web sites by people who don’t know what they’re doing. No, it can’t be done in Photoshop, it shouldn’t be done at all.
As Burger boy won’t help, but again can only criticise, here is a java

He asked: "Can this be done in photoshop."
I answered: "No, it can’t be done in Photoshop."

You’re just so obsessed with humping my leg that you
missed that part, huh?

script for copyright:-

Crappy HTML snipped.
S
SamMan
Jan 18, 2004
"Alan" wrote in message
"Voivod" wrote in message
On Sun, 18 Jan 2004 10:16:13 +0000 (UTC), "Tom Curtis" scribbled:

I have seen where if you right click on an image a box with a copright message appears. Can this be done in photoshop.

Its an EASILY defeated javascript that’s added to web sites by people who don’t know what they’re doing. No, it can’t be done in Photoshop, it shouldn’t be done at all.
As Burger boy won’t help, but again can only criticise, here is a java script for copyright:-

<html>

<head>

<title>JavaScript 1</title>

</head>

<body>

Go to the <a href="gallery.html" onClick="alert(‘Note: All the pictures displayed\nin the gallery are copyright.’)">gallery</a>

</body>

</html>

Now what would happen if I have JavaScript disabled?… Or if I press one key (Print Screen) on my keyboard? Either way, I have the image if I really want it and while JavaScript is useful in some situations, it is worthless in this case, and only clutters up the document.


SamMan
Rip it to reply
V
Voivod
Jan 18, 2004
On Sun, 18 Jan 2004 15:09:03 GMT, "SamMan"
scribbled:

"Alan" wrote in message
"Voivod" wrote in message
On Sun, 18 Jan 2004 10:16:13 +0000 (UTC), "Tom Curtis" scribbled:

I have seen where if you right click on an image a box with a copright message appears. Can this be done in photoshop.

Its an EASILY defeated javascript that’s added to web sites by people who don’t know what they’re doing. No, it can’t be done in Photoshop, it shouldn’t be done at all.
As Burger boy won’t help, but again can only criticise, here is a java script for copyright:-

<html>

<head>

<title>JavaScript 1</title>

</head>

<body>

Go to the <a href="gallery.html" onClick="alert(‘Note: All the pictures displayed\nin the gallery are copyright.’)">gallery</a>

</body>

</html>

Now what would happen if I have JavaScript disabled?… Or if I press one key (Print Screen) on my keyboard? Either way, I have the image if I really want it and while JavaScript is useful in some situations, it is worthless in this case, and only clutters up the document.

Hell, the images are in your cache anyhow, these scripts are worse than worthless because they give a false sense of security.
RF
Robert Feinman
Jan 18, 2004
In article <budmdc$jp2$>, tom.curtis1
@btinternet.com says…
I have seen where if you right click on an image a box with a copright message appears. Can this be done in photoshop.
You could put your copyright message in the ALT tag for the image. Then with some browsers it will show up if the mouse is passed over the image.
Better is to put something on the image itself. I sign mine, for example.

Robert D Feinman

Landscapes, Cityscapes, Panoramas and Photoshop Tips
http://robertdfeinman.com
S
SamMan
Jan 18, 2004
"Robert Feinman" wrote in message
In article <budmdc$jp2$>, tom.curtis1
@btinternet.com says…
I have seen where if you right click on an image a box with a copright message appears. Can this be done in photoshop.
You could put your copyright message in the ALT tag for the image. Then with some browsers it will show up if the mouse is passed over the image.
Better is to put something on the image itself. I sign mine, for example.

Yes, it is better to place a watermark on the image itself. The best rule of thumb is… If you don’t want people taking your images, don’t put them on the web. As stated before, if an image is viewable, it is retrievable…


SamMan
Rip it to reply
E
edjh
Jan 18, 2004
Voivod wrote:

On Sun, 18 Jan 2004 12:46:51 GMT, edjh scribbled:

Tom Curtis wrote:

I have seen where if you right click on an image a box with a copright message appears. Can this be done in photoshop.

Image where? On the web? Probably an alt tag.

I’m pretty sure, especially from the ‘right click’ reference that he’s talking about that stupid javascript code to
disable the right click menu on web pages in some
imaginary hopes that people won’t be able to get a
copy of your vacation pictures.
Oh yeah. Forgot about that one.


Comic book sketches and artwork:
http://www.sover.net/~hannigan/edjh.html
A
Alan
Jan 18, 2004
"Voivod" wrote in message
On Sun, 18 Jan 2004 14:00:41 +0000 (UTC), "Alan" scribbled:

"Voivod" wrote in message
On Sun, 18 Jan 2004 10:16:13 +0000 (UTC), "Tom Curtis" scribbled:

I have seen where if you right click on an image a box with a copright message appears. Can this be done in photoshop.

Its an EASILY defeated javascript that’s added to web sites by people who don’t know what they’re doing. No, it can’t be done in Photoshop, it shouldn’t be done at all.
As Burger boy won’t help, but again can only criticise, here is a java

He asked: "Can this be done in photoshop."
I answered: "No, it can’t be done in Photoshop."
You’re just so obsessed with humping my leg that you
missed that part, huh?

script for copyright:-

Crappy HTML snipped.
You gave him no support in his question, he wanted to know HOW to do it, could it be done in Photoshop, yes your answer was right, it cannot be done in Photoshop, however you then (as always) went off in a rant about how it could be done and how you, the king of the web have decided that it was wrong to do so.
Others here wish to help people, not belittle anyone who posts looking for answers.
You really are a first class C**t!
V
Voivod
Jan 18, 2004
On Sun, 18 Jan 2004 18:03:52 +0000 (UTC), "Alan" scribbled:

he wanted to know HOW to do it

No, he wanted to know IF it could be done in Photoshop
and I answered him. Now stop humping my leg.
C
Combaticus
Jan 19, 2004
in article buehq8$7a$ wrote
on 1/18/04 10:03 AM:

"Voivod" wrote in message

Crappy HTML snipped.

and how you, the king of the web have decided that it was wrong to do so.

What’s wrong, you want to be king too?

hahahaha.

Others here wish to help people…

What people choose to do in newsgroups is totally up to them. For instance you want to whine and cry.

":^) ®

There is no "one use" for newsgroups… they can be used as each person wishes.

not belittle anyone …

How "belittled" you feel is totally up to you.

":^) ®

You really are a first class C**t!

What do you have against "C**ts"?

hahahaha.
A
Alan
Jan 19, 2004
"Combaticus" wrote in message
in article buehq8$7a$ wrote
on 1/18/04 10:03 AM:

"Voivod" wrote in message

Crappy HTML snipped.

and how you, the king of the web have decided that it was wrong to do so.

What’s wrong, you want to be king too?

hahahaha.
No reason to want to. I have a life away from computers thank you.

Others here wish to help people…

What people choose to do in newsgroups is totally up to them. For
instance
you want to whine and cry.

And other like you waste bandwidth and air by living

There is no "one use" for newsgroups… they can be used as each person wishes.

not belittle anyone …

How "belittled" you feel is totally up to you.
":^)
C
Combaticus
Jan 19, 2004
in article bug3eg$dsd$
wrote on 1/19/04 12:10 AM:

"Combaticus" wrote in message
in article buehq8$7a$ wrote
on 1/18/04 10:03 AM:

"Voivod" wrote in message

Crappy HTML snipped.

and how you, the king of the web have decided that it was wrong to do so.

What’s wrong, you want to be king too?

hahahaha.
No reason to want to.

Then you have no reason to cry when someone wants to be "king of the web", do you.

":^) ®

What people choose to do in newsgroups is totally up to them. For instance you want to whine and cry.

And other like you waste bandwidth and air by living.

You are not paying for anyone’s bandwidth but your own. If you are buying air, then I have some for sale that you might want.

hahahaha.

You really are a first class C**t!

What do you have against "C**ts"?

hahahaha.
The fact that wankers like you come out of them.

You sure do a lot of crying about things that you have no control over.

hahahaha.
C
cole
Jan 21, 2004
Alan ignore the noname losers.
&
"pioe[rmv]"
Jan 21, 2004
Tom Curtis wrote:

I have seen where if you right click on an image a box with a copright message appears. Can this be done in photoshop.

Why not simply include a little copyright message with your name in a corner of the picture?

Per Inge Oestmoen, Norway

Master Retouching Hair

Learn how to rescue details, remove flyaways, add volume, and enhance the definition of hair in any photo. We break down every tool and technique in Photoshop to get picture-perfect hair, every time.

Related Discussion Topics

Nice and short text about related topics in discussion sections