Most open-source Flash projects don’t rely too heavily on .fla files, but I have a couple in mine. To make things easier for potential contributors who don’t own Flash CS3, I’m thinking of including the SWFs and enumerating all the relevant classes in them, so that the SWFs can be [Embed]ed. Essentially, for each SWF in my project, I’m making a text file that lists:
[LIST]
[]The name of each class in the Library (actually, the.full.Definition of each class)
[]The class’s base class
[]Whether the class is auto-generated
[]Ideally, the instanceNames of all displayObject children of the class, ignoring those without instanceNames
[/LIST]
That last one’s a bit of a stretch. But I’ve manually created lists for two SWFs in the past, enumerating the classes and their base classes. The problem is, this list can change a lot during development, and recompiling it is a bit of a hassle.
Does anyone know if there is a Flash command that will do this, or whether it is possible to make a command that will do this?