On Wed, Sep 3, 2008 at 10:36 AM, S0 F1 <[EMAIL PROTECTED]> wrote: > Does anyone know how to find out the bare minumum Attributes and Methods of > all built-in/intrinsic Classes being used in a SWF/AS3 application. > > Something perhaps that can parse a SWF, identify what intrinsic classes are > being used and what is redundant or could be stripped out of those classes? > > Asking this from the point of view of optimising filesize/performance?
Intrinsics are built into the player, they're not part of the SWF. In the SWF you'll only find the strings to identify them with, and you can't go without those anyway. If you want to know which intrinsics are referenced in an SWF, Swfdump, Swfmill etc will be able to help. They're right at the beginning of the dump, but connecting the class- to the package names will require some work. Mark _______________________________________________ Flashcoders mailing list [email protected] http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

