Top 10 List

Jumble Jumble

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)

null

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"

  1. Iambetterthanu Top Computer and Office Pranks for April Fools Day| Computer Pranks Central April 1st, 2008 at 9:14 am

    [...] Jumble Jumble Word Prank [...]

  2. ... April 4th, 2008 at 9:12 am

    can u delete jumbler afterwards?

  3. ERROR! May 5th, 2008 at 12:54 pm

    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 :)

  4. Twilight New Moon Trailers November 17th, 2009 at 12:24 am

    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


Recent comments