I have 0 experience with Air, but this reminded me of a Java issue I once spent some time figuring out. I don't have a suggestion on why the scanning doesn't work, but I think a stack trace would be your best friend right now.
I'm guessing you're relying on this line to capture and display it?
nativeProcess.standardOutput.readUTFBytes(nativeProcess.standardOutput.bytesAvailable);
However, you are writing IOExceptions
to System.err
- is there a nativeProcess.standardError
you could read in Air? Alternatively, output everything to System.out
.
Lauri Lehtinen
2010-06-18 15:48:17