Reputation: 8180
After changing the Flex SDK to 3.6 (from 4.5.1) so as to target Flash player 9.0.124, the project no longer compiles, producing spurious errors such as XML does not have matching begin and end tags
leading me to believe that the compilation process is 'borked'. Anyone seen this? Solutions?
This is a pure AS project, and so should have no dependency on the Flex SDK, howver, it seeems to be inextricably linked to the Flex 4.x SDK and Flash Player 10+. I have tried swf-version
and -target-player-version
in the compiler arguments, but there is still something I am missing to get this to compile for Flash player 9.
Upvotes: 0
Views: 81
Reputation: 22604
You might well have used classes or methods that were not available in the 3.6 SDK. Even rather common ones, such as Vector, can only be used in FP > 10.
Upvotes: 1