If you work with Flex and Skins you may use the option “Compile CSS to SWF”, this is a good solution but I recently found that as you add more resources to the CSS file, Eclipse may suffer a memory bottleneck while compiling it.
To solve that problem I just decided to compile the CSS directly with mxmlc, and disable “Compile CSS to SWF” option. This will recover the compiling time for the application and it shouldn’t crash again.
The only thing you need to do that is to have mxmlc on the path and write this instruction on the shell / terminal:
mxmlc [path/to/file]/file_name.css
This should generate a file_name.swf on the same folder.
The only problem of this solution is to not forgot to compile the file every time you make some change!
Related posts:

It‘s quite in here! Why not leave a response?