I have a medium size project and am trying to reduce .swf size. There are several places in my project where I can either 1) put a bunch of code in a <mx:script> tag or included .as file or 2) subclass to make things look cleaner. In some quick tests, it looks like creating a new class adds ~80 bytes (plus or minus about 10) to the .swf compared to putting it in an mxml or <script> tag.
1) Does this observation seem about right as a general rule? 2) Are there any other considerations for subclassing vs. not subclassing that relate to .swf size? Thanks!

