Is it possible to include all classes of a swc in another swc (not swf)?
I would think that when compiling my new swc, using the parameter:
-include-libraries included.swc
would include that swc's classes in my output swc... but it won't unless a
class in my source references classes contained in the included swc.
library.swc
src/Connection.as
src/...
shared/included.swc
(contains Player class for example)
The only way the Player class is comiled in library.swc is if it is
referenced in Connection.as:
var player : Player = new Player();
Any ideas?
--
View this message in context:
http://www.nabble.com/Include-all-classes-of-a-swc-in-an-output-swc-%28not-swf%29--tp24811527p24811527.html
Sent from the FlexCoders mailing list archive at Nabble.com.