Re: [flexcoders] using a class once throughout the all app

2010-02-25 Thread Nick Middleweek
I'm interested in this... So you're findings are that if you have say 5 MXML components and each component uses and imports the popupManager class/ package it is bloating the SWF file 5 times what it should be rather than just importing it once? On 25 February 2010 06:35, ZIONIST wrote: > >

Re: [flexcoders] using a class once throughout the all app

2010-02-24 Thread Alex Harui
If you are concerned about SWF size and the total amount of bytes downloaded, be sure to use the framework RSLs. They are increasingly likely to be cached and save you significant download costs. After that, use modules to load classes not needed at startup “later” and “on-demand”. If you are

[flexcoders] using a class once throughout the all app

2010-02-24 Thread ZIONIST
Hi guys, in my research on how to reduce the size of a flex application swf, i was led to believe that classes are one of the factors that contribute to the size of any flex swf and in order to reduce the size, one has to make sure he only calls the classes that are needed. but again i noticed t