Jumble Jumble
- Filed under: Computer Pranks
- Date: Feb 4,2008
When people type they tend to pay attention to the word they are currently typing, not the word they were typing 2 minutes ago. This office prank takes advantage of peoples carelessness and starts jumbling up everything you have typed. If you typed “the” 2 minutes ago, it will then move that word after “her” that you typed 20 seconds ago. So basically it jumbles up all your words. Nice huh. So how do you do it?
Step 1: Open Microsoft Word

Step 2: Open your vba editor ( press Alt + 11)

Step 3: Copy This Code into your Normal Template ( It’s under NORMAL)
Sub Auto_Exec()
counter = CStr(Int((2 - 1 + 1) * Rnd + 1))
Application.OnTime When:=Now + TimeValue("00:00:" + counter), _
Name:="jumble"
End Sub
Sub jumble()
Dim MainDoc As Document
Dim word As Object
Set MainDoc = ActiveDocument
On Error Resume Next
Count = MainDoc.words.Count
counter = CStr(Int((Count - 1 + 1) * Rnd + 1))
counter2 = CStr(Int((Count - 1 + 1) * Rnd + 1))
theword = Trim(MainDoc.words(counter))
If theword = " " Then
Else
MainDoc.words(counter).Delete
If counter = 1 Then
MainDoc.words(counter2).InsertAfter (" " + CStr(Trim(theword)) + " ")
Else
MainDoc.words(counter2).InsertAfter (CStr(Trim(theword)) + " ")
End If
End If
Call AutoExec
End Sub
Step 4: Save
The next time this person opens word it will start this program. It will start jumbling up the words and be sure to drive them nuts.
Cell Phones news

4 Responses for "Jumble Jumble"
[...] Jumble Jumble Word Prank [...]
can u delete jumbler afterwards?
Hey i noticed an error, you use AutoExec at the end however at the begining you name it as Auto_Exec i just couldent get it to work on my machine until i changed that. it worked after that
Hey, I won the free tickets for Twilight New Moon, I am gonna watch it with my GF, you can also reserve the free tickets just go to %9http://twilightnewmoongiveaway.blogspot.com cheers
Leave a comment