Question

Is it possible to call an external method:

this.extContext.call("GenerateProductsFunction", productList);

And retrieve the array of strings?:

public class GenerateProductsFunction implements FREFunction{
    @Override
    public FREObject call(FREContext context, FREObject[] args) {

        args[0] // Get as Array?

        return null;
    }
}
Was it helpful?

Solution

If you send back an array, the args[0] type will be FREArray, which is a subclass of FREObject.

http://help.adobe.com/en_US/air/extensions/WS982b6f491d178e6d6565d9b1132a79a012f-7ff8.html

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top