Thanks for your help.
With trail-and-error I found a way to do it with Sqrat
The following works:
Code:Function func(RootTable(vm), L"ExtraClass");
if(!func.IsNull())
{
Object obj = func.Evaluate<Object>();
Function func2(obj, L"echo");
if(!func2.IsNull())
{
func2.Execute();
}
}
ExtraClass is my class I am creating.
echo() is the method I want to call.
Everything works as expected. :)
(I don´t know how "dirty" this solution is :D