Hello: I try calling a Java applet method (applet is loaded by the SWF's HTML wrapper) using ExternalInterface.call(). The applet return type is byte[], however on the Flex side, ExternalInterface.call() return null. Any ideas how can I get my byte array in Flex? I observed the call returns ok for some primitive types (int, boolean, String). But it does not work for byte[]. and I want to avoid the Base64 transcoding, as it takes too much time for large data.
Thanks..

