Skip to main content

AUTOMATED TYPING

GHOST TYPING

Hey guys , Today I am going to share with you a Short but Cool Notepad Trick. People Use notepad to type and save some important or regular information, But very less people know that there is much more that we can do with Notepad.

What if i say that we can make Notepad to type automatically what ever we wish to…. Unreal ? Yes it is possible and you will be doing it by yourself in just a few moments.You can show it to your friends and surprise them. Basically it is a prank that you can do with anyone just for fun.

 This Process is Also known as ” Ghost Keyboard Typing ” Because you dont even touch your keyboard and words starts displaying in your notepad automatically, When you show this to your friend or anyone else, they will be excited to learn this from you as well.


Notepad Trick

Notepad trick to Type Automatically


Step 1: Right click on your desktop and select create new text document or simply Open Notepad.


Step 2: Exactly Copy the code given below and Paste it in notepad document that you have just created.


    set wshshell = wscript.CreateObject(“wScript.Shell”)

    wshshell.run “Notepad”

    wscript.sleep 400

    wshshell.sendkeys “T”

    wscript.sleep 100

    wshshell.sendkeys “E”

    wscript.sleep 120

    wshshell.sendkeys “C”

    wscript.sleep 200

    wshshell.sendkeys “H”

    wscript.sleep 100

    wshshell.sendkeys “S”

    wscript.sleep 140

    wshshell.sendkeys “O”

    wscript.sleep 100

    wshshell.sendkeys “L”

    wscript.sleep 50

    wshshell.sendkeys “U”

    wscript.sleep 120

    wshshell.sendkeys “T”

    wscript.sleep 170

    wshshell.sendkeys “I”

    wscript.sleep 100

    wshshell.sendkeys “O”

    wscript.sleep 50

    wshshell.sendkeys “N”

    wscript.sleep 120

    wshshell.sendkeys “S”

    wscript.sleep 160


Step 3: Save the above code in Notepad file As ” techsolutions.vbs ” (Without Quotes ) but make sure  While saving this file select Save as type  “All files” and extension must be .vbs


Step 4: Now double click on The saved File, You will see “TECHSOLUTIONS” will be typed  Automatically, This is one of the Most awesome Notepad Trick that You learned today. Moreover  you can edit the Words In the above given Code with any desired words you want Notepad to type for you. e.g. : I FOOLED YOU BABY..vb


IMPORTANT !!!


While Double Clicking on the saved file if you see an error box like ” line 1 ” and “Char 37” Then dont worry, Right click on "techsolutions.vbs" and click on edit,


Now delete all Double quotations ie : ”  and Type them all manually from your keyboard, save it and now you will have no errors.

Popular posts from this blog

CONVERTING TORRENT FILE TO ZIP FILE

HOW TO CONVERT TORRENT FILE TO ZIP FILE 1>>click the link below  http://www.zbigz.com   2>>upload your .torrent file  3>>wait until conversion, after conversion your  file can be downloadable in .zip format.

What is the difference between Abstraction and Encapsulation?

I'm sure You came here to see the answer after vising plenty of websites and which is not enough to understand about that concept. The reason why you cant get the perfect or believable answer abut this concept is you're not reading the whole content slowly and carefully. But im sure if you read this fully and carefully, you can earn the knowledge about the difference between Abstraction and Encapsulation. and here we are gonna teach you the real time scenario of Abstraction and Encapsulation. ok!  Lets go to the Topic. What is Abstraction: "Abstraction  is a process of hiding the implementation details and showing only functionality to the user." You could see this answer in many websites. Let me explain about what is implementation and functionality.  For Example, " Dhoni is a cool captain" Cool is his nature it is his Function. He is always cool even the Team is in underpressure. So cool is his Natural Function. And, We dont know how he is so cool in under...

Responsive PanelGrid in JSF Primeface

Here, we are going to learn about responsive PanelGrid in JSF Primeface component. As we know primefaces providing lots of good stuffs for JSF. In Primeface, there is a component name Panel Grid which we are going to use for our convenience. In most of the cases, PanelGrid used for making our content in a proper way. If users opens our website which we have made in jsf using panelGrid component that not in responsive manner, that could be really ugly as for as user concern, So here we are going to break it just by using Layout attribute in the panel Grid component. for exaple, < h3 >Responsive</ h3 > < p:panelGrid columns = "3" layout = "grid" >                 < h:outputText value = "Content" />      < h:outputText value = "Content" />      < h:outputText value = "Content" />      < h:outputText value = "C...