Author |
Topic  |
|
KMC
Starting Member
40 Posts |
Posted - 08 October 2002 : 17:58:15
|
O.K., this is an odd one but here goes....
Is there a way to make it impossible for forum users to copy messages from the forum in order to paste them elsewhere??? |
|
Nikkol
Forum Moderator
    
USA
6907 Posts |
|
Gremlin
General Help Moderator
    
New Zealand
7528 Posts |
Posted - 08 October 2002 : 18:12:29
|
You can certainly make it harder for people to copy, but not prevent it completely. All anyone has to do is find the page in their browser cache and open it up with notepad or an editor. |
Kiwihosting.Net - The Forum Hosting Specialists
|
 |
|
Podge
Support Moderator
    
Ireland
3776 Posts |
|
VodkaFish
Average Member
  
USA
654 Posts |
Posted - 08 October 2002 : 22:47:19
|
There are scripts that convert text to graphics, but other then knowing and seeing a few, I have never used them. That would be what you're looking for, but you'd have to know what you're doing pretty well to implement it. |
v ø d k â f ï § h |
 |
|
KMC
Starting Member
40 Posts |
Posted - 08 October 2002 : 23:13:29
|
Any idea where I could find a "no-right-click script" or the scripts that convert text to graphics??
Any idea how I would add them to the forum??
Thanks so much!! |
 |
|
Nikkol
Forum Moderator
    
USA
6907 Posts |
Posted - 08 October 2002 : 23:56:05
|
the no right click really won't work because the person can just highlight what they want and then Ctrl-V and Ctrl-P. i know nothing about converting text to graphics, but my guess is that if you are converting an entire topics text and all the replies, that it would cause slow load times. |
Nikkol ~ Help Us Help You | ReadMe | 3.4.03 fixes | security fixes ~ |
 |
|
BWJM
Junior Member
 
Canada
193 Posts |
Posted - 09 October 2002 : 00:20:50
|
Converting text to graphics: That is the entire premise of some of the "Project Dolphin" signature images that a few members of the Broken Machine team have made. We are harvesting statistics and data from a webpage in text form, massaging them as desired and then outputting them (with or without additional graphics) to PNG format. PNG is currently the most common format that we use however there are at least a dozen others including GIF and JPG. This code is available from us and will run on any .NET-enabled web server. Just check out this topic: http://forum.snitz.com/forum/topic.asp?TOPIC_ID=35274
I agree with Nikkol that if you were to convert entire pages to graphical format on-the-fly, performance would be severly degraded on two fronts: a) Server performance. The web server must now do everything it used to do in addition to converting tons of KB of text to graphical format. For a small image such as the one in my sig, the script run time is as long as 3 seconds. b) Download time. Graphics are generally larger than any text which they may represent. Therefore, as an example, 100 KB of pure text or HTML would be downloaded much quicker by a user than would a 300 KB or larger graphic that would show the same information. For users on a dialup connection (like me!), this is a very serious consideration. |
 |
 |
|
vynsane
New Member

73 Posts |
Posted - 10 October 2002 : 02:38:23
|
you can get around "no right click" by holding down Ctrl and right clicking. sure, it stops the non net-savvy from getting copyrighted material and such, but it's not too preventative in the case of some one that is slightly more advanced... |
why do you not have something to drink... choose one making you better feeling...
my snitz's:
www.vynsane.com/forum - l:guest p:guest (limited access account...)
www.WallCrawlersWeb.com/forum - The Spidey Database |
 |
|
Azaniah
Senior Member
   
United Kingdom
1004 Posts |
Posted - 10 October 2002 : 05:39:06
|
A thought just struck me, which (like most my thoughts) won't be a good one.
But could you fool the browser into copying the wrong information? You highlight and copy "this" but what you actually paste is "that"?
I have no idea how that would work, but if preventing the actual right click or copy thing is a no no, then providing dummy data could be the answer maybe?
Cheers Az |
Eagles fly!, but weasels don't get sucked into jet engines. |
 |
|
sy
Average Member
  
United Kingdom
638 Posts |
Posted - 10 October 2002 : 06:26:32
|
You could also consider getting a screen grab of the text and turn it into a GIF, seeing as how its likely to be 2 colour and you can make the bg transparent, the file size should be very low.
Can you copy and paste out of flash or shockwave movies and can you prevent the movies from caching on the clients machine?
Here is a no right click:
<!-- HTML Markup startspan -->
<script language="JavaScript">
<!--
// No rightclick script.
var message="Change to your message for right clickers";
// 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 -->
Is their a document.copy or document.viewsource we could use to do a similiar thing as above?
Bottom line as others have said is that determined people could still steal the code, maybe put a strong legal disclaimer in the no right click script. |
The pessimist complains about the wind; the optimist expects it to change; the realist adjusts the sails
|
 |
|
|
Topic  |
|