
In this article, I will describe how to create a free pronunciation tool in Windows using Notepad. It's simple and easy and only takes a few steps. There is no need to download any bloated software from the web. Just a few lines of code and save it as a vbs extension and your pronunciation tool is ready. So let's see how to do it. You can enter any text and it will play the audio of that text telling you exactly how to pronounce it.
How to create a free pronunciation tool in Windows using Notepad
Step 1: - Open notpead.
Step 2: - Now copy and paste the code given below into your notepad.
Dim message, sapi message = InputBox("A Free Pronunciation tool"+vbcrlf,"Text to Audio converter") Set sapi = CreateObject("sapi.spvoice") sapi.Speak message
Step 3: - Now save it as Pronunciation.vbs on the desktop.
Step 4: - Now, click on the created tool and enter any word or phrase and it will speak to you immediately.