2

I can create SWC files. I can create ASDOCs.

Is there any way of combining this in Flash IDE or FlashDevelop? I would like the ASDOCs to "live" in the SWC.

nizzle
  • 1,036
  • 2
  • 10
  • 23

1 Answers1

0

Basically an .swc file is a compressed archive similar to .zip.

Hence you should be able to:

  1. Generate your ASDoc
  2. Archive them + your source code into your .swc

Have a look at ANT which can simply be run from the command line.

Cheers

Dennis Jaamann
  • 3,547
  • 2
  • 23
  • 42