Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Community
Technology
Technology Q&A
Can you get a moving logon screen?
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="Awesome" data-source="post: 142013" data-attributes="member: 22238"><p><span style="font-size: 14px"><span style="font-family: 'Arial'"><span style="color: #3b3128">First step – download a typewriter WAV file from any of your favorite <a href="http://www.makeuseof.com/dir/soundbible-wav-sounds-free-to-download/" target="_blank"><span style="color: #0477cd"><span style="font-size: 14px">free WAV file websites</span></span></a></span></span></span></p><p><span style="font-size: 14px"><span style="font-family: 'Arial'"><span style="color: #3b3128">preferably download one that lasts from 30 seconds to a minute, depending on how much text you want your phantom app to type on the screen by itself. Save the file to <em><em><span style="font-size: 14px">c:/windows/Media/</span></em></em>with the rest of the Windows sound files so it’ll be easy to find later</span></span></span></p><p><span style="font-family: 'Arial'"><span style="color: #3b3128"><span style="font-size: 14px"><img src="http://i45.tinypic.com/ra9gz5.png" alt="" class="fr-fic fr-dii fr-draggable " style="" /></span></span></span></p><p><span style="font-size: 14px"><span style="font-family: 'Arial'"><span style="color: #3b3128">Next, open up a text file and save it as a .wsf file. In my case I called it “<em><em><span style="font-size: 14px">phantomtype.wsf</span></em></em>“. Declare all of the required variables, set up your text file link and then type the text that you want your typing ghost app to type on the screen.</span></span></span></p><p><span style="font-size: 14px"><span style="font-family: 'Arial'"><span style="color: #3b3128">Example:</span></span></span></p><p>[CODE]<job></p><p><script language="VBScript"></p><p>Option Explicit</p><p>On Error Resume Next</p><p> </p><p>Dim NoteShell</p><p>Dim SoundShell</p><p>Dim strText</p><p>Dim intTextLen</p><p>Dim x</p><p>Dim intPause</p><p>Dim strTempText</p><p> </p><p>strSoundFile = "C:\Windows\Media\typewriter1.wav"</p><p> </p><p>strText = "Hello. My name is Tyler. I have possessed your computer</p><p>and there is nothing you can do about it. Of course, I suppose you</p><p>can always close the window if you want to, but that wouldn't be any fun!"[/CODE]</p><p><span style="font-size: 14px"><span style="font-family: 'Arial'"><span style="color: #3b3128">Pretty simple so far right? The two “Shell” variables are basically the shell commands that are going to launch Notepad and your sound file. The phantom typing will come from your script sending keystrokes to the Notepad app behind the scenes. Accomplishing that is easy – you just use “CreateObject” to set up your two application objects, and then launch each app, waiting a tiny bit between each launch.</span></span></span></p><p><span style="color: #110000"><span style="font-family: 'monospace'"><span style="font-size: 12px">Set NoteShell = CreateObject("WScript.Shell")</span></span></span></p><p><span style="color: #110000"><span style="font-family: 'monospace'"><span style="font-size: 12px">Set SoundShell = CreateObject("Wscript.Shell")</span></span></span></p><p><span style="color: #110000"><span style="font-family: 'monospace'"><span style="font-size: 12px"></span></span></span></p><p><span style="color: #110000"><span style="font-family: 'monospace'"><span style="font-size: 12px">NoteShell.Run "notepad"</span></span></span></p><p><span style="color: #110000"><span style="font-family: 'monospace'"><span style="font-size: 12px">WScript.Sleep 1000</span></span></span></p><p><span style="color: #110000"><span style="font-family: 'monospace'"><span style="font-size: 12px"></span></span></span></p><p><span style="color: #110000"><span style="font-family: 'monospace'"><span style="font-size: 12px">SoundShell.Run "C:\Windows\Media\typewriter1.wav", 0, True</span></span></span></p><p><span style="color: #110000"><span style="font-family: 'monospace'"><span style="font-size: 12px">WScript.Sleep 500</span></span></span></p><p><span style="font-size: 14px">Now, the victim will see Notepad pop up on the screen, and after a second, the typewriter typing sound will start. At that moment, you will start sending ghostly text to the screen, just like someone is sitting there typing. Here’s how that part works.</span></p><p> </p><p><span style="color: #110000"><span style="font-family: 'monospace'"><span style="font-size: 12px">intTextLen = Len(strText)</span></span></span></p><p><span style="color: #110000"><span style="font-family: 'monospace'"><span style="font-size: 12px">intPause = 100</span></span></span></p><p><span style="color: #110000"><span style="font-family: 'monospace'"><span style="font-size: 12px"></span></span></span></p><p><span style="color: #110000"><span style="font-family: 'monospace'"><span style="font-size: 12px">For x = 1 to intTextLen</span></span></span></p><p><span style="color: #110000"><span style="font-family: 'monospace'"><span style="font-size: 12px"> strTempText = Mid(strText,x,1)</span></span></span></p><p><span style="color: #110000"><span style="font-family: 'monospace'"><span style="font-size: 12px"> NoteShell.SendKeys strTempText</span></span></span></p><p><span style="color: #110000"><span style="font-family: 'monospace'"><span style="font-size: 12px"></span></span></span></p><p><span style="color: #110000"><span style="font-family: 'monospace'"><span style="font-size: 12px"> WScript.Sleep intPause</span></span></span></p><p><span style="color: #110000"><span style="font-family: 'monospace'"><span style="font-size: 12px"></span></span></span></p><p><span style="color: #110000"><span style="font-family: 'monospace'"><span style="font-size: 12px"> If intPause <= 500 Then</span></span></span></p><p><span style="color: #110000"><span style="font-family: 'monospace'"><span style="font-size: 12px"> intPause = intPause + 100</span></span></span></p><p><span style="color: #110000"><span style="font-family: 'monospace'"><span style="font-size: 12px"> Else</span></span></span></p><p><span style="color: #110000"><span style="font-family: 'monospace'"><span style="font-size: 12px"> intPause = 100</span></span></span></p><p><span style="color: #110000"><span style="font-family: 'monospace'"><span style="font-size: 12px"> End If</span></span></span></p><p><span style="color: #110000"><span style="font-family: 'monospace'"><span style="font-size: 12px">Next</span></span></span></p><p></p><p><span style="font-size: 14px">This may look complicated, but don’t worry, it’s not at all. The first line checks the length of the long string of text that you typed up at the start of this program. That’s the text that you want to magically appear – one letter at a time – on the screen. The next line creates a starting pause (a tenth of a second) between each typed letter.</span></p><p><span style="font-size: 14px">The For loop that you see below that basically starts at position 1, extracts a single letter from your text, sends that letter to Notepad, and then waits a little bit before moving forward to the next letter in your text. Pretty cool huh?</span></p><p><span style="font-size: 14px">And to keep things authentic, the little “IF” statement keeps adding and subtracting pause time between typed letters to make the whole thing look really authentic, like someone is sitting right there typing.</span></p><p><span style="font-size: 14px">Now close up the script.</span></p><p><span style="color: #110000"><span style="font-family: 'monospace'"><span style="font-size: 12px">WScript.Quit</span></span></span></p><p><span style="color: #110000"><span style="font-family: 'monospace'"><span style="font-size: 12px"></script></span></span></span></p><p><span style="color: #110000"><span style="font-family: 'monospace'"><span style="font-size: 12px"></job></span></span></span></p><p><span style="color: #110000"><span style="font-family: 'monospace'"><span style="font-size: 12px"></span></span></span></p><p><span style="font-size: 14px">Save the file again – making sure you’ve got the “wsf” extension – and you’re done. Double click the file and check out your haunted computer!</span></p><p><span style="font-size: 14px">Here’s my script in action (I wish you could hear the typing sounds, it’s a riot!)</span></p><p style="text-align: center"><span style="font-size: 14px"><p style="text-align: center"><span style="font-size: 14px"><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/typing3.png?3e3c76" alt="" class="fr-fic fr-dii fr-draggable " style="" /></span></p></p> <p style="text-align: center"></span></p><p><span style="font-size: 14px">Like most programs, it could use a little perfecting if you’re up to it. The sound file needs to match the amount of time it takes for the typing to finish. Or, you could loop both the typing and the sound, but you’ll need to come up with a way to let the person close the typing ghost application. If you don’t, the “sendkeys” will just continue typing no matter what window they open…which, is actually a pretty funny virus-like behavior, but not something that I would recommend you do to your friends.</span></p><p><span style="font-size: 14px">So give this creepy little script a try.Dont Know How To Make It Background Though:/</span></p></blockquote><p></p>
[QUOTE="Awesome, post: 142013, member: 22238"] [SIZE=14px][FONT=Arial][COLOR=#3b3128]First step – download a typewriter WAV file from any of your favorite [URL='http://www.makeuseof.com/dir/soundbible-wav-sounds-free-to-download/'][COLOR=#0477cd][SIZE=14px]free WAV file websites[/SIZE][/COLOR][/URL][/COLOR][/FONT][/SIZE] [SIZE=14px][FONT=Arial][COLOR=#3b3128]preferably download one that lasts from 30 seconds to a minute, depending on how much text you want your phantom app to type on the screen by itself. Save the file to [I][I][SIZE=14px]c:/windows/Media/[/SIZE][/I][/I]with the rest of the Windows sound files so it’ll be easy to find later[/COLOR][/FONT][/SIZE] [FONT=Arial][COLOR=#3b3128][SIZE=14px][IMG]http://i45.tinypic.com/ra9gz5.png[/IMG][/SIZE][/COLOR][/FONT] [SIZE=14px][FONT=Arial][COLOR=#3b3128]Next, open up a text file and save it as a .wsf file. In my case I called it “[I][I][SIZE=14px]phantomtype.wsf[/SIZE][/I][/I]“. Declare all of the required variables, set up your text file link and then type the text that you want your typing ghost app to type on the screen.[/COLOR][/FONT][/SIZE] [SIZE=14px][FONT=Arial][COLOR=#3b3128]Example:[/COLOR][/FONT][/SIZE] [CODE]<job> <script language="VBScript"> Option Explicit On Error Resume Next Dim NoteShell Dim SoundShell Dim strText Dim intTextLen Dim x Dim intPause Dim strTempText strSoundFile = "C:\Windows\Media\typewriter1.wav" strText = "Hello. My name is Tyler. I have possessed your computer and there is nothing you can do about it. Of course, I suppose you can always close the window if you want to, but that wouldn't be any fun!"[/CODE] [SIZE=14px][FONT=Arial][COLOR=#3b3128]Pretty simple so far right? The two “Shell” variables are basically the shell commands that are going to launch Notepad and your sound file. The phantom typing will come from your script sending keystrokes to the Notepad app behind the scenes. Accomplishing that is easy – you just use “CreateObject” to set up your two application objects, and then launch each app, waiting a tiny bit between each launch.[/COLOR][/FONT][/SIZE] [COLOR=#110000][FONT=monospace][SIZE=12px]Set NoteShell = CreateObject("WScript.Shell") Set SoundShell = CreateObject("Wscript.Shell") NoteShell.Run "notepad" WScript.Sleep 1000 SoundShell.Run "C:\Windows\Media\typewriter1.wav", 0, True WScript.Sleep 500[/SIZE][/FONT][/COLOR] [SIZE=14px]Now, the victim will see Notepad pop up on the screen, and after a second, the typewriter typing sound will start. At that moment, you will start sending ghostly text to the screen, just like someone is sitting there typing. Here’s how that part works.[/SIZE] [SIZE=14px] [/SIZE] [COLOR=#110000][FONT=monospace][SIZE=12px]intTextLen = Len(strText) intPause = 100 For x = 1 to intTextLen strTempText = Mid(strText,x,1) NoteShell.SendKeys strTempText WScript.Sleep intPause If intPause <= 500 Then intPause = intPause + 100 Else intPause = 100 End If Next[/SIZE][/FONT][/COLOR] [SIZE=14px][FONT=monospace][SIZE=14px][/SIZE][/FONT][/SIZE] [SIZE=14px]This may look complicated, but don’t worry, it’s not at all. The first line checks the length of the long string of text that you typed up at the start of this program. That’s the text that you want to magically appear – one letter at a time – on the screen. The next line creates a starting pause (a tenth of a second) between each typed letter.[/SIZE] [SIZE=14px]The For loop that you see below that basically starts at position 1, extracts a single letter from your text, sends that letter to Notepad, and then waits a little bit before moving forward to the next letter in your text. Pretty cool huh?[/SIZE] [SIZE=14px]And to keep things authentic, the little “IF” statement keeps adding and subtracting pause time between typed letters to make the whole thing look really authentic, like someone is sitting right there typing.[/SIZE] [SIZE=14px]Now close up the script.[/SIZE] [COLOR=#110000][FONT=monospace][SIZE=12px]WScript.Quit </script> </job> [/SIZE][/FONT][/COLOR] [SIZE=14px]Save the file again – making sure you’ve got the “wsf” extension – and you’re done. Double click the file and check out your haunted computer![/SIZE] [SIZE=14px]Here’s my script in action (I wish you could hear the typing sounds, it’s a riot!)[/SIZE] [CENTER][SIZE=14px][CENTER][SIZE=14px][IMG]http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/typing3.png?3e3c76[/IMG][/SIZE][/CENTER][/SIZE][/CENTER] [SIZE=14px]Like most programs, it could use a little perfecting if you’re up to it. The sound file needs to match the amount of time it takes for the typing to finish. Or, you could loop both the typing and the sound, but you’ll need to come up with a way to let the person close the typing ghost application. If you don’t, the “sendkeys” will just continue typing no matter what window they open…which, is actually a pretty funny virus-like behavior, but not something that I would recommend you do to your friends.[/SIZE] [SIZE=14px]So give this creepy little script a try.Dont Know How To Make It Background Though:/[/SIZE] [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Community
Technology
Technology Q&A
Can you get a moving logon screen?
Top