Author Topic: Vowel Changer  (Read 1743 times)

in a text editor, you goof

I don't think OP is wanting to do it in a word processor

he's asking for a separate program, i'm telling him to open notepad

I think he means a program that will replace the vowels as he types

that... sounds like it'd be really dumb...
i can't think of a single practical application of that, which would presumably be why no such thing exists

yes that's what the majority of the first page was discussing

Use autoHotKey.

http://www.autohotkey.com/docs/misc/Remap.htm

In fact I did it for you. Just paste this into a text document and rename it "vowels.ahk" and run it. (Install autoHotKey first)

Code: [Select]
a::e
e::i
i::o
o::u
u::a


Thos scropt os viry ennuyong, of O du sey su mysilf.
« Last Edit: August 05, 2013, 07:45:12 AM by Pecon »

Why do you need this?
Please don't troll...

I believe this is what I use:
http://msdn.microsoft.com/sv-se/goglobal/bb964665.aspx
You can also easily set things up so that you can switch between different keyboard layouts by pressing Alt + shift
« Last Edit: August 05, 2013, 02:55:56 PM by Nymethus »

Use autoHotKey.

http://www.autohotkey.com/docs/misc/Remap.htm

In fact I did it for you. Just paste this into a text document and rename it "vowels.ahk" and run it. (Install autoHotKey first)

Code: [Select]
a::e
e::i
i::o
o::u
u::a


Thos scropt os viry ennuyong, of O du sey su mysilf.
Thanks.