Reputation: 2773
I was working flex sdk AS3 project on windows xp and had no problems using flex sdk in command line to compile my AS3 files.
No I am on Windows 7 and when I try to compile I keep getting blank swf.
my ant version is 1.8.2 which is the latest, my java is some 1.7.0-ea and my flex sdk is 4.5.1
all work fine. What could be the problem?
Upvotes: 0
Views: 199
Reputation: 104
According to the error message add, you've got an issue with some RSL loading.
As it says, you can compile with -static-link-runtime-shared-libraries to force the static linking of the RSL, otherwise, the application will try to load them from the net (as it is configured in the flex-config file)
Upvotes: 1