as3.call(myvar, "someCall", param1, param2)
Instead you can make calls that look like native Lua code:
myvar.someCall(param1, param2)
This includes chaining calls like a.b.c().d
Below is a preview of the release:
Yet another software development blog (YASDB). The blog will cover my software engineering interests including (but not limited to): RIA (Flex, AIR, and Silverlight), Languages (ActionScript, C#, Ruby, Lisp/Scheme, Smalltalk, Io, Erlang), Language Paradigms (object oriented, dynamic, functional, and concurrent programming, cross platform development, and development process.
as3.call(myvar, "someCall", param1, param2)
myvar.someCall(param1, param2)