Faster Flex Applications: Shrink Your RSLs

A few days ago Metal pointed out to me in a comment on my blog that by using the SWFs inside a SWC, my RSLs are much larger than they need to be. Sure enough he was right. When you use compc to create a SWC, the SWF inside the SWC contains a lot of unnecessary stuff when used as an RSL. That stuff is necessary to create an application which uses the SWC, so don’t go ditching compc. Here is what you need to do if you want to have size optimized RSLs:

  1. Create an ActionScript class that extends Sprite and includes references to the stuff you want to go into your RSL. For instance:
``` package { import flash.display.Sprite; import mx.core.Application; public class smallLinker extends Sprite { private var application:Application; } } ```
  1. Compile your SWC:
``` compc -debug=false -o=my.swc smallLinker ```
  1. Compile your RSL:
``` mxmlc -o=my.swf -file-specs=smallLinker.as ```
  1. Compile your application:
``` mxmlc -external-library-path+=my.swc \ -runtime-shared-libraries=http://www.yourhost.com/my.swf \ -o=app.swf -file-specs=app.mxml ```
  1. Upload app.swf and my.swf to your host.

  2. Run your application and verify it works.

  3. Send me a check for the money you save on bandwidth (Don’t worry Metal, we will split it 60/40).

If you compare the size of the SWF inside the SWC and the SWF created with mxmlc, you should see a very large difference. Since your new SWF is much smaller than your old one, your application will take less time to load across the wire. Fun stuff!