vbscript - how to make exporting of file in hta and saving to disk -
i working on hta app have made app u can enter text , voice plugin reading want code can make sound exported , saved disk
set objvoice = createobject("sapi.spvoice") set objstream = createobject("sapi.spfilestream") line="hello there" objstream.open "c:\users\hellothere.wav", 3, vbfalse set objvoice.audiooutputstream = objstream objvoice.speak line
Comments
Post a Comment