Javascript handlers
Posted: Wed Feb 22, 2017 4:55 pm
Hi all,
I have some js code which sends data back to livecode.
My js code
So I'm getting error "TypeError: liveCode.dataReady is not a function".
I have dataReady as a javascripthandler in my browser widget properties.
Please help to solve this problem.
Thanks,
Gurgen
I have some js code which sends data back to livecode.
My js code
Code: Select all
function crosswordDataToLivecode(pData){
try{
liveCode.dataReady(pData);
}
catch(err) {
alert(err);
}
};
I have dataReady as a javascripthandler in my browser widget properties.
Please help to solve this problem.
Thanks,
Gurgen