I am currently using version 4.9.8.7 to make a simple vector based game, and have had a lot of fun doing it. However, I have been using flash 8 exports to test it.

Recently I decided I'd like to use the drawCircle feature, but found that it only works with flash 9. When I exported to flash 9, none of the graphics worked at all. I closed my project and created a new one with only a few lines of code:

Code:
element ("Canvas").lineStyle (5, RGB(255,0,0), 1);

element ("Canvas").moveTo (0,0);
element ("Canvas").lineTo (500,500);
Although this code works when run in the 3DFA environment, when exported in flash 9, the screen is blank even though the movie has loaded. I have tried in google chrome, firefox and explorer but none were successful in rendering anything.

Has anyone else had this problem or know of a solution? I apologize if it has already been posted, but I couldn't see it on the first few pages.

Thanks.