Flex graphic assets: SWF or SWC? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T04:47:36Z http://stackoverflow.com/feeds/question/164162 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/164162/flex-graphic-assets-swf-or-swc 4 Flex graphic assets: SWF or SWC? defmeta 2008-10-02T19:37:24Z 2008-10-07T05:27:40Z <p>Which is a better format to store graphic assets for a Flex application, SWF or SWC?</p> <p>Are there any real differences, and if so what are they?</p> http://stackoverflow.com/questions/164162/flex-graphic-assets-swf-or-swc/164726#164726 3 Answer by Glenn for Flex graphic assets: SWF or SWC? Glenn 2008-10-02T21:39:54Z 2008-10-02T21:39:54Z <p>SWC is what you use when you're looking for a library to compile into your app. You have access to the classes and can import individual parts. SWF is more likely what you're looking for when embedding graphics. </p> <p>Here's the docs you might be interested in:</p> <p><a href="http://livedocs.adobe.com/flex/3/html/help.html?content=layoutperformance_06.html#223998" rel="nofollow">http://livedocs.adobe.com/flex/3/html/help.html?content=layoutperformance_06.html#223998</a></p> <p>I've been having good success with SVG for images, but there's some caveats since Flex only implements a subset of the features. </p> http://stackoverflow.com/questions/164162/flex-graphic-assets-swf-or-swc/165369#165369 2 Answer by onekidney for Flex graphic assets: SWF or SWC? onekidney 2008-10-03T01:48:41Z 2008-10-03T01:48:41Z <p>I have no real reason for doing this so it may be incorrect but I usually create SWF's for things that need to be loaded during runtime and SWC's for things that need to be available for design time.</p> http://stackoverflow.com/questions/164162/flex-graphic-assets-swf-or-swc/175577#175577 0 Answer by happydog for Flex graphic assets: SWF or SWC? happydog 2008-10-06T18:28:45Z 2008-10-06T18:28:45Z <p>A SWC is simply a SWF and some metadata wrapped into a zip file. Other than the fact that runtime loading of SWC isn't supported, I don't think there are any major differences between using the two formats.</p> http://stackoverflow.com/questions/164162/flex-graphic-assets-swf-or-swc/177310#177310 7 Answer by mikechambers for Flex graphic assets: SWF or SWC? mikechambers 2008-10-07T05:27:40Z 2008-10-07T05:27:40Z <p>Assets in a seperate SWF are loaded and included at runtime.</p> <p>Assets in a SWC are loaded and included / compiled at compile time.</p> <p>You can also directly embed assets within the main app SWF at compile time (check out the Embed meta data).</p> <p>Of course, you can also load individual assets (such as a PNG) directly at runtime.</p> <p>As far as which is better, it really depends on what you are trying to do, and how the assets are used.</p> <p>mike</p>