noizy
Legacy Member
dit is een scriptje dat een window opent en daar vanalles is spamt en dan zichzelf sluit. Ik zou hier een skip functie in wille steke. kem al avanalles geprobeert maar kgeraker ni uit.
kheb al geprobeert van er dit tussen te zetten maar dat lukt dus niet
Code:
<HEAD>
<!-- redirect -->
<meta http-equiv='Refresh' content='20;url=index.htm'>
<!-- matrix -->
<SCRIPT LANGUAGE="JavaScript">
var matrix_window;
function MatrixWrite(string, bold, italic, speed) {
var height = window.screen.height;
var width = window.screen.width;
var win_dimensions = "height = " + eval(height + 10) + ", width = " + eval(width + 30);
matrix_window = window.open("blank.htm", "matrix_window", win_dimensions);
matrix_window.document.open("text/html", "replace");
var i;
var timer = 0;
if(matrix_window.moveTo)
matrix_window.moveTo(-10, -30);
if(matrix_window.resizeBy)
matrix_window.resizeBy(0, 50);
matrix_window.document.write("<body bgcolor=000000 text=00ff00 link=00ff00 alink=00ff00 vlink=00ff00 onBlur='self.focus()'>");
matrix_window.document.write("<font face=system>");
if(bold == true) matrix_window.document.write("<b>");
if(italic == true) matrix_window.document.write("<i>");
for(i = 0; i <= string.length; i++) {
timer += (Math.random() * speed);
setTimeout("matrix_window.document.write('" + string.charAt(i) + "');", timer);
}
timer += 2000;
setTimeout("matrix_window.close()", timer);
}
var messages = new Array("loading ...", "analysing ...", "detecting ...");
function GetRndIndex() {
return (parseInt(Math.random() * messages.length));
}
function WriteRndMsg(bold, italic, speed) {
MatrixWrite(messages[GetRndIndex()], bold, italic, speed);
}
</script>
</HEAD>
<body text="#00ff00" bgcolor="#000000" link="#00ff00" alink="#00ff00" vlink="#00ff00" onload="javascript:MatrixWrite('loading setup ...<br><br>detecting browser.... browser detected!<br> recomanded: InternetExplorer<br> download it at: www.microsoft.com<br> not good shown by other<br><br>analysing system rescources...... done!<br> best vieuw at 1024x768 or heiger<br> best color at 32bit<br> WARNING! using a dial-up connection can be uncomfteble<br><br>searching for java.. done!<br> you need java to vieuw this site<br> download it at: www.java.com<br><br>loading page.', false, false, 50)">
<font face="system">
<img border="0" src="styling/aandacht17.gif">
<font size="4"><b>WARNING! copyright © 2004 by <a href="http://www.gensys.tk" target="_blank">gensys</a></b></font>
<img border="0" src="styling/aandacht17.gif">
<br><br>
<font size="2"> U will be taken to the website whitin a few seconds...</font>
</font>
</body>
kheb al geprobeert van er dit tussen te zetten maar dat lukt dus niet
Code:
matrix_window.document.write("<a href=index.htm>skip</a>");