Monday, 16 December 2013

Disco on keyboard

1) LED Disco on Keyboard
This prank will turn your Keyboard LED’s on and off so fast that it seems like you have an DISCO lights on Keyboard

Set wshShell =wscript.CreateObject(”WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys”{CAPSLOCK}”
wshshell.sendkeys”{NUMLOCK}”
wshshell.sendkeys”{SCROLLLOCK}”
loop




2) Make the computer go “ding” then popup a message
This prank will first produce a ding sound and than popup a message. Make your friend confused by writing some CRAZY text.

Set objVoice = CreateObject(”SAPI.SpVoice”)
Set objFile = CreateObject(”SAPI.SpFileStream.1″)
objFile.Open “c:\Windows\Media\Ding.wav”
objVoice.Speakstream objFile
Wscript.Echo “your message here”

No comments:

Post a Comment