I want to call as3 function from lua and pass lua object as argument (Main is global lua object set from as3)
Main.foo(luaobject)
in Main.as I have
public function foo(arg:*){
}
when I call Main.foo(luaobject) I get just a string "table" passed as argument. I am trying to get the lua table object that I can send back to lua. Is that possible? Can I get this lua object from lua stack somehow?