I solved my problem. Trying to run a swf9 app from Tomcat on Windows
was giving me an error that FLEX_HOME was not defined. I found that I
had to restart my machine in order for the environment variable to be
seen. I updated the wiki page with this information.
I noticed that you have to specify a canvas width and height in order
to display something in swf9.
For example, this app produces no output in swf9:
<canvas>
<text>Hello</text>
</canvas>
However, this app works as expected:
<canvas width="800" height="600">
<text>Hello</text>
</canvas>
Thanks!
Phil