On 10/28/2013 10:04 AM, Pavel Fischer wrote:
> for (var out in outputs) {
> print("Output: " + out.fileName);
> }
That's not how the "for" statement works in JavaScript. Instead, write:
print("Output: " + outputs[out].fileName);
Christian