Im calling a function in lua from actionscript using
callstack : Array = luaAlchemyInstance.doString("luafunction");
my function should return some values
function luafunction()
return true, 125
end
When i look at the callstack array returned by the function in as3, I recieve only the success/ fail part. The array length is 1, true, and contains none of my return values.
Any idea whats going wrong? Cheers