1 语音发声脚本,调用sapi.spvoice读英语hh 保存为say.vbs,点击打开就可以念诗: set objTTS = CreateObject("sapi.spvoice") objTTS.speak("问来问去的问题too young too simple,sometimes naive") 使用JS要有activeX控件 var VoiceObj = new ActiveXObject("Sapi.SpVoice"); Voice…
这个是个简单的vbs脚本,使用opentwebst进行录制 'Use the command line below to launch the script (or just double click the .vbs file): ' %windir%\system32\wscript.exe TwebstScript.vbs Option Explicit Dim core Dim browser Dim browser2 Set core = CreateObject("OpenTwebs…
之前在做项目时用到了一点vbs脚本,记录下. C++程序调用vbs脚本 System(vbs路径 参数); //空格隔开 Vbs脚本 '''''Vbs脚本解析参数 Set objArgs = Wscript.Arguments Then ) end if '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''注释符号 msgbox objArgs(x) next ''''''''''''''''''''''Vbs脚本执行.exe…