The latest SWFDump should have an -abc option that will dump the entire byte code and let you rummage through it for the class defs. There is no utility just to spit out class defs.
________________________________ From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of paladinknighti Sent: Tuesday, March 11, 2008 10:48 AM To: [email protected] Subject: [flexcoders] Re: Obtaining all definitions of an Application Domain or Module swf Thanks for your help. I googled for swfutils/swfdump and saw a bunch of them but they all didn't seem to output class definitions. Could you please tell me which one you're referring to or give me the link to download that tool as binary/source? Thanks, Aaron --- In [email protected] <mailto:flexcoders%40yahoogroups.com> , "Alex Harui" <[EMAIL PROTECTED]> wrote: > > There is no actionscript API for this. > > > > It is possible to load the SWF as a bytearray and parse it. I think we > finally made SWFDump available in the open source. > > > > ________________________________ > > From: [email protected] <mailto:flexcoders%40yahoogroups.com> [mailto:[email protected] <mailto:flexcoders%40yahoogroups.com> ] On > Behalf Of paladinknighti > Sent: Monday, March 10, 2008 12:17 PM > To: [email protected] <mailto:flexcoders%40yahoogroups.com> > Subject: [flexcoders] Obtaining all definitions of an Application Domain > or Module swf > > > > Dear All, > > Is there a way to obtain a list of all definitions (classes, > interfaces, namespaces, functions, etc) defined by an > ApplicationDomain? As you know, ApplicationDomain class has a method > called getDefinition(string) which returns a Class class given the > name of the class. What I'm looking for is something like > getDefinitions() which returns an array of all classes in that > particular ApplicationDomain. > > Actually, it doesn't even have to work programmatically. What I'm > trying to do is to read a module swf file and be able to extract a > list of all class definitions from it. Are there such tools available? > > Thanks, > Aaron >

