Hi, I'm exploring the compiler options for an AS3 project in which parentSWF loads childSWF.
for compiling childSWF: -load-externs=parentSWFClasses.xml (the link report) applied to childSWF works great (with this exception: a grandchildSWF loaded into childSWF does not seem to inherit the classes that childSWF inherits from parentSWF). -externs=sharedImage.jpg does not work AT ALL. Here I need to exclude a picture embedded in parentSWF from compiling into childSWF, and bulking it up. The picture needs to be embedded in parentSWF, so loading/caching it is not an optimal solution here. One thing: I actually have the picture embedded in a class (PictureInThisClass.as) that both parentSWF and childSWF use. Am I using the right command and the right syntax to exclude an embedded picture from being compiled? I'm a lowly actionscripter, and not a flexcoder yet, so if I'm off-topic tell me so. Thanks

