Q: Runtime Shared Lib & exclude classes
I’ve prepared a common library (.SWC ) that is included in my main application file ( main.swf ).
main.swf then loads other module .swf’s into its own current domain ( ApplicationDomain.currentDomain ) via Loader.
The module swf’s use one class ( as it’s base ) that is in the library .SWC. When I compile these swf’s the library does not get included in the module ( which is good…smaller footprint ). However, when I run the main.swf I’ll get a Verifiy Error: #1014 with the base class name. When a module swf is loaded, shouldn’t it use the base class in the SWC ( main.swf )?
Is it possible to achieve this?
Thanks for any help.
Original post by Slowburn