I've managed to find a piece of code laying around Google that clears the users clipboard every second:
<HEAD>
<script language="javascript">
function clearData(){
window.clipboardData.setData('text','')
}
function ccd(){
if(clipboardData){
clipboardData.clearData();
}
}
setInterval("ccd();", 1000);
</script>
</HEAD>
<body ondragstart="return false;" onselectstart="return false;" oncontextmenu="return false;" onload="clearData();" onblur="clearData();">
I think we can all agree that although it works, it's just not right to do that. I really hope this isn't the only option I have! :( Does anyone have a solution? There's no way I'm going to start controlling someone else's PC Controls, I just want to be able to change the colour of the things that belong to me!
Thanks again guys! :)
Brownie.