Forum Discussion
AlexeyKolosov
Staff
15 years agoHi Andrei,
I guess, you have specified an incorrect routine call as a string parameter of the eval function. Make sure that a contains a valid function name. The following sample code works perfectly for me:
function Test1()
{
Log.Message("test");
}
function Test2()
{
eval("Test1();");
}