The following goody could perhaps help us tweaking the html files... I'm gonna try it right now
http://www.inforapid.de/html/searchreplace.htm
This is perhaps even better
http://www.nodesoft.com/SearchAndReplace/Default.aspx
qbv8 wrote : Craban,
as far as I can see, there are 2 solutions for this problem:
[*]1. Someone extracts the tree and dumps it through a reverse graph algorithm. The result should be a complete list of paths to any node you want to go.
[*]2. Patch the code, you have the sources. Some regular expressions should take enough care of the "never-go-back" problem.
Regards,
qbv8
@everyone else: The above code is in almost every page. A simple search and delete for the last paragraph of itif (window.Event)
document.captureEvents(Event.MOUSEUP);
//To disable context menu
function nocontextmenu()
{
event.cancelBubble = true
event.returnValue = false;
return false;
}
//To disable right click
function norightclick(e)
{
if (window.Event)
{
if (e.which !=1)
return false;
}
else
if (event.button !=1)
{
event.cancelBubble = true
event.returnValue = false;
return false;
}
}
//To disable F5 and Backspace button
function nokeydown()
{
if ((event.keyCode == 8) || (event.keyCode == 116)) //backspace=8 and F5=116
{
event.keyCode = 0;
event.returnValue = false;
}
}
document.oncontextmenu = nocontextmenu;
document.onmousedown = norightclick;
document.onkeydown = nokeydown;
will quickly remove the calls for the functions, allowing unhindered play. Besides, as someone else mentioned, we're playing this game for FUN, because if we just wanted to see the pretty pics, we could make a slideshow... Please, those who are annoyed at it, consider the above hack as an alternative to "preview.app"document.oncontextmenu = nocontextmenu;
document.onmousedown = norightclick;
document.onkeydown = nokeydown)
Chaotic wrote : I'm a little confused now.![]()
What have you been trying to do Erana? Why do need the right click?“
As for the variables, wouldn't I have problems keeping the values over multiple pages? The concern was one of the main reasons I went with cookies.
Users browsing this forum: No registered users and 14 guests