Search Results

2
votes

Any way to have an ActionScript 3 (Flex/AIR) project print to standard output?

With AIR on Linux, it is easy to write to stdout, since the process can see its own file descriptors as files in /dev. For stdout, open /dev/fd/1 or /dev/stdout as …
1
vote

Performing XML Transformations in Flex

In AIR 1.5, a version of Webkit with support for XSLT is included. Use the class XSLTProcessor from JavaScript just like you would in Firefox. (Note: There is one annoying bug. …