scroll bar

Messages
1,072
Ok so I have a site and theres a picture and when you put ur mouse over it a page comes down with stuff you can read. Ok heres the problem. It has a scroll bar but you can go over to scroll down because as soon as you take your mouse off the image the page goes back up. Any sujestions? Also to take up space ill ask two questions in one thread. Does anyone know a no right-click script that works for myspace? This seems impossable because java-script is blocked but someone got it to work. I saw the script in there myspace and it works but I tryed it and it dosent. They must of put it in a certain area or something,but anyways : /
 
can you link to the page where the no-right-click script worked?
 
Yeah, because I haven't heard or been able to find a script that disables right clicking that does not use Javascript.
 
Well it uses this:

<script language=JavaScript>
<!--

//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com

var message="Hey what gives?!";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

// -->
</script>

Which is obviously javascript...
 
Just trial and error...put it in all the fields on your myspace "Edit Profile" as you can until it works.
 
Back
Top Bottom