I am trying to use revBrowserCallScript in a desktop application on Windows and I continue to get "error in script". I've tried a number of different formulations, but none of them seem to work. There is a Javascript function on the page that is loaded into the browser called get_uploadparams() that is to return an array of parameters, but no matter how I try to call it to return the path, LC errors on the script.
I have tried:
Code: Select all
get revBrowserCallScript(sBrowserID, "get_uploadparams")
get revBrowserCallScript(sBrowserID, "get_uploadparams()")
get revBrowserCallScript(sBrowserID, "get_uploadparams();")
At the moment, I am just trying to handle the return with
, so that I can see what I get and decide how to deal with it. But LC chokes on the revBrowserCallScript every time.
Am I doing something wrong? There seems to be little about this function on the forums, does it work for everyone but me

?