No idea, actually, but it is not something related to BulkLoader.
My number one guess would be: the compiler is not including the class,
unless you tell it specifically to do so with the first class
specifically calling it (it then forces that class to be included in
the swf).
Cheers
Arthur
This is a common issue in as3 (and not related to BulkLoader). In
short you will have to either:
a) forget about strong typing on the loading swf
b) Use interfaces instead of concrete types and include those in both
c) use flex builder and specify them as library only (only used for
compile time checking, but doesn't compile it into the swf)
This situation more complex than it seems at first glance, a good
reading on it are Jesse Warden's posts on it (for some reason his site
seems to be offline).
Cheers
Arthur Debert
Glad you got this sorted out.
Sharing code between several swfs in AVM2 is a bit trickier, and
that's why we provide for a "context" option to swf items, so that
ApplicationDomain can be specified.
Cheers
Arthur Debert