Sorry for stupid question, but I read all than i can found, but I cannot solve my problem, like this
In C2 i wrote:
Function "PlayFun" ---- Text.Append Function.Param(0);
in index.html I wrote:
jQuery(document).ready(function ()
{
// Create new runtime using the c2canvas
cr_createRuntime("c2canvas");
if (c2_callFunction) {c2_callFunction("PlayFun", ["param1"]);} else {alert ("Not found function");}
});
Finally, I recieve index.html:101 Uncaught ReferenceError: c2_callFunction is not defined
What I do wrong?