Code:
function USCallAS() { local array<ASValue> args; args.Length = 2; args[0].Type=AS_String; args[0].s="Hello,AS3"; args[1].Type=AS_Number; args[1].n=2012; Invoke("MyASFunction",Args); }
But no matter I use Invoke or packing unrealscript functions, It does not work with AS3.
Comment