Quote:
Originally posted by Flaming Fist Enforcer:
You can't do that, but if you have Win XP you can move your mouse pointer over a picture and wait for menu bar to show. Then click on save picture as icon.
|
Thatīs not a winxp feature, itīs a IE 6 feature.

Works for win2k as well as for win98 if you have IE6.
As Lennon and Andrewas said, this is not a very good way to protect you images. If you still want to try it here the script my hubby made for me.
code:
<script language="javascript"
type="text/javascript">
<!--
var message="All images on this site are copyrighted.";
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>
[/QUOTE]Goes between the headtags. [img]smile.gif[/img]
[ 05-04-2003, 06:54 AM: Message edited by: WillowIX ]