Header Ads

Top-5 Best NotePad tricks for windows 7/windows 8/XP 2014

We all use Notepad as a text editor in windows OS. Notepad has been included in all versions of windows since windows 1.0 in 1985. it is used commonly as a text editor, but you can actually make some funny and cool Pranks using Notepad  in your PC.Have you ever anticipated this?? Today am going to teach you some of those funny and cool Notepad tricks.
notepad+tricks
without wasting much of your time lets see the top 5 notepad tricks.Remember you have to open a new Notepad window every time for testing each trick and save it with the given respective file extensions while saving the file select file type as all files. 

1.Matrix Effect Trick

  • Most of US might be aware of Matrix movie. Inspired by the movie this trick has become very popular in social networking sites today.  
  • Copy the below code and save it with  ".bat" extension@echo off
color 02:startecho %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start  

  • Save it with any name like(matrix.bat) but .bat extension is must also select file type as all files as shown below.
saving+file
  • Now run this file you will see something like this 
matrix+sreenshot

2.World Trade Center Attack Notepad Trick

  • Open Notepad Type Q33NY (it's the Flight number which crashed into WTC in 9/11.)
  • Now select the text and goto Format label and click on font
  • Select the font as WINDLINGS and change the font size to 72 then click on ok  . screenshot is given  below  
windlings+72

  • Now you can see the symbolic representation depicting a plane crashing into two towers with a danger symbol.
attack+of+twin+towers

3. LED Dancing Trick On Keyboard Using Notepad

  • Using this trick you make your capslock,numlock,scrolllock led to dance i.e. blink continuously
keyboard+led

Set wshShell =wscript.CreateObject("WScript.Shell")

do

wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop

  • Copy the above code and save it as Dance.vbs file extension .vbs is mandatory 
  • To stop this Blinking you should either restart or Open the task manager (press Alt+Ctrl+del to open task manager) and select processes label and click on wscript.exe and click end process . 

4.Fake Error Message Using Notepad

  • Using this trick you can create a fake error message window 
 msg * Error: Your system is affected by virus
  • Save it with .bat file extension also select file type as all files .
  • Now run the file you will see a fake error message as below
fake+error+message

5.Shut Down Your PC Prank 

  • Ask your friend to run this file they can be fooled by using this trick. Try this trick only after closing all your important files 
@echo off

:A

cls
echo Do you wanna crash your computer? (y/n)
pause
echo Are you sure? (y/n)
pause
echo your computer will crash when the time reaches zero.
pause
msg * Your computer will crash in…
msg * 5
msg * 4
msg * 3
msg * 2
msg * 1
msg * Good-Bye
msg * You have been hacked! icon smile
shutdown -s -t 00  

No comments