これどうぞ。↓
hspsapi.dllダウンロードURL
http://hinekure.m19.coreserver.jp/filedownload/tool/hspsapi.zip
#uselib "hspsapi.dll"
#define SAPI_MESSAGEID 58671
#func sapi_Init "sapi_Init" int
#func sapi_Exit "sapi_Exit"
#func sapi_SetCallbackHwnd "sapi_SetCallbackHwnd" int, int
#func sapi_Open "sapi_Open"
#func sapi_Close "sapi_Close"
#func sapi_ReleaseBuffer "sapi_ReleaseBuffer"
mes"マイクロソフト音声認識"
sdim onsei
sdim onseibox
pos 20,20:input onsei,260,20:ionsei=stat
pos 20,40:mesbox onseibox,260,120,0+4:ionbox=stat
pos 220,170:button "検索",*okensaku
// MS音声認識初期化・オープン
ons=1
oncmd gosub *wm_sapi, SAPI_MESSAGEID
// 通知するウィンドウハンドルを指定
sapi_SetCallbackHwnd hwnd, SAPI_MESSAGEID
// 初期化
sapi_Init 0
// オープンする
sapi_Open
onexit *exit
stop
*wm_sapi
// 結果が来た
if lparam == 0{
dupptr msg, wparam, 256, 2
objprm ionsei, str(msg)
objprm ionbox, str(msg)+"\n"+onseibox
}
return
*okensaku
exec "https://www.google.com/#q="+onsei,16
stop
*exit
sapi_Close//開放
end