How to make your computer speak what you type using notepad

In this tutorial I am going to show you how to make a simple application with notepad that make you computer speak/read what ever you type. Simply follow the below step by step to make your computer speak what you type.
Let's rock and row.
Step 1 : Open your notepad. [start >> run >> Type "notepad" >> Enter] or any other prefer text editor/method

Step 2 : Copy the following code in notepad then save it with .hta extension
[e.g Jackieriel Text To word.hta]
<html>
<head>
<title>Text To Word</title>
<HTA:APPLICATION
APPLICATIONNAME="Text To Voice"
ID="Text To Voice"
VERSION="1.0"
MAXIMIZEBUTTON="no"
SCROLL="no"/>
</head>
<style> td { color: Black; }
caption { color: Black; }
body { font-family: Arial; background-color: #388A9F; color: #808080; }
input { background-color: #202020; color: #808080; }
textarea { background-color: #22374B; color: #D6E1EC; font-style:bold; }
</style>
<script language="VBScript"> 
Sub Window_OnLoad
Dim width,height
width=470
height=400
self.ResizeTo width,height
End Sub
Function Listen
Dim message
message = tamsg.value 
If (message = null) Then
X = MsgBox("Enter your message", 48, "Error Message")
Else
Set sapi=CreateObject("sapi.spvoice") 
sapi.Speak message
End If
End Function
</script>
<body bgcolor="white">
<span title="Visit our blog for more http://www.jackierielsoft.blogspot.com.ng"> <marquee color="white" bgcolor="black" style="font-family= Book Antiqua;">This Program  was develop by  JackierielSoft <font color="cyan"> visit http://www.jackierielsoft.blogspot.com.ng</font></marquee> 
</span> <table align="center" width="400"> <caption style="font-family:Book Antiqua; font-size:20;"><hr color="black"><b>Text To Voice</b><hr color="black"></caption>
<tr> <td align="center"> <span title="Enter your Full message here"><textarea id="tamsg" cols="50" rows="10"></textarea></span> </td> </tr>
<td align="right" color="black" style="font-family: Book Antiqua; font-size:18;"> <hr color="black"> <span title="Click here to listen your message"> 
<input style="width: 130px; height:25px; color: white; background-color: #203040; font-family:Book Antiqua; font-size:15;" type="button" Value="Listen" id="btnsp" onClick="Listen()" onmouseover="btnsp.style.background='#102030'" onmouseout="btnsp.style.background='#203040'"> </span> </td> </tr> <tr> 
<td align="right"><hr color="black"> <span title="All rights reserved by Attract Tech" style="font-size: 13px; font-family:Book Antiqua;">&copy; 2017 JackierielSoft - All rights reserved.</span> </td> </tr> </table> 

</body> 

</html>


Step 3 : Now Open that file by double click then you will see one window.

Step 4: Write your in text-box which you want to listen then click on listen button.
That is all.
subscribe to blog.

Post a Comment

1 Comments

  1. This post is so useful and informative. Keep updating with more information.....
    What Is Laravel Framework
    Laravel PHP Framework

    ReplyDelete