Re: Jaws Speech Detection

Jim,

Thanks for your response, I've got an IsSpeaking JAWS script working but now
it seems I'm unable to locate it with the RunScript COM function.

Is there any documentation regarding where this function begins its search
for the specified script?

Here's what I have so far.

RunScript(L"<path to script>\\ScriptName.jss");

bool JawsInterface::RunScript(const wchar_t* ScriptName)
{
   function_r =
jawsServer.Invoke(_bstr_t("RunScript"),&_variant_t(ScriptName),&vResult);
   return (function_r == S_OK ? (bool)vResult : false);
}

This code results in JAWS a error of "Unable to locate specified script
<scriptname>"

I guess what's confusing me the most is what I should be passing to tell
jaws where my script is located...

Other related posts: