<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Creating smaller swfs (Part III)</title>
	<atom:link href="http://gauravj.com/blog/2009/07/creating-smaller-swfs-part-iii/feed/" rel="self" type="application/rss+xml" />
	<link>http://gauravj.com/blog/2009/07/creating-smaller-swfs-part-iii/</link>
	<description>Tips and Tools of Flex</description>
	<lastBuildDate>Wed, 04 Aug 2010 12:22:14 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Gaurav</title>
		<link>http://gauravj.com/blog/2009/07/creating-smaller-swfs-part-iii/comment-page-1/#comment-1006</link>
		<dc:creator>Gaurav</dc:creator>
		<pubDate>Tue, 12 Jan 2010 02:40:08 +0000</pubDate>
		<guid isPermaLink="false">http://gauravj.com/blog/?p=376#comment-1006</guid>
		<description>@Adrian,

RSLs are specified at compile time.. so the main app will load the RSL that you pass in using (runtime-shared-library-path). If there is a library that the main app doesn&#039;t need but is required for the modules. You can specify that in the compiler arguments for the module. If there are multiple modules, make sure the modules that gets loaded first is compiled against the RSLs..</description>
		<content:encoded><![CDATA[<p>@Adrian,</p>
<p>RSLs are specified at compile time.. so the main app will load the RSL that you pass in using (runtime-shared-library-path). If there is a library that the main app doesn&#8217;t need but is required for the modules. You can specify that in the compiler arguments for the module. If there are multiple modules, make sure the modules that gets loaded first is compiled against the RSLs..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gaurav</title>
		<link>http://gauravj.com/blog/2009/07/creating-smaller-swfs-part-iii/comment-page-1/#comment-1005</link>
		<dc:creator>Gaurav</dc:creator>
		<pubDate>Tue, 12 Jan 2010 02:35:48 +0000</pubDate>
		<guid isPermaLink="false">http://gauravj.com/blog/?p=376#comment-1005</guid>
		<description>@Matt, 

Yes, its is possible. In Flex 4 we added a new Font Manager (CFFFontManager) which support (DefineFont4) CFF font embedding. There is a new attribute called embedAsCFF which is true by default. 

Older MX components (like the ones in your example) work with DefineFont3 format. So you should modify your example and add embedAsCFF: false; in the @font-face declaration. 

In case you run into any issues please file a bug at http://bugs.adobe.com/flex</description>
		<content:encoded><![CDATA[<p>@Matt, </p>
<p>Yes, its is possible. In Flex 4 we added a new Font Manager (CFFFontManager) which support (DefineFont4) CFF font embedding. There is a new attribute called embedAsCFF which is true by default. </p>
<p>Older MX components (like the ones in your example) work with DefineFont3 format. So you should modify your example and add embedAsCFF: false; in the @font-face declaration. </p>
<p>In case you run into any issues please file a bug at <a href="http://bugs.adobe.com/flex" rel="nofollow">http://bugs.adobe.com/flex</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adrian</title>
		<link>http://gauravj.com/blog/2009/07/creating-smaller-swfs-part-iii/comment-page-1/#comment-1004</link>
		<dc:creator>Adrian</dc:creator>
		<pubDate>Mon, 11 Jan 2010 21:02:04 +0000</pubDate>
		<guid isPermaLink="false">http://gauravj.com/blog/?p=376#comment-1004</guid>
		<description>There is still a significant issue in Flex 4. If an RSL is not loaded by the main app, the modules don&#039;t load it!!!! This is a must if one want dynamic behavior with max reuse, where you have multiple modules that have common functionality that should be built into an RSL, that the main application doesn&#039;t either know or care.</description>
		<content:encoded><![CDATA[<p>There is still a significant issue in Flex 4. If an RSL is not loaded by the main app, the modules don&#8217;t load it!!!! This is a must if one want dynamic behavior with max reuse, where you have multiple modules that have common functionality that should be built into an RSL, that the main application doesn&#8217;t either know or care.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Grogan</title>
		<link>http://gauravj.com/blog/2009/07/creating-smaller-swfs-part-iii/comment-page-1/#comment-995</link>
		<dc:creator>Matt Grogan</dc:creator>
		<pubDate>Fri, 08 Jan 2010 14:21:14 +0000</pubDate>
		<guid isPermaLink="false">http://gauravj.com/blog/?p=376#comment-995</guid>
		<description>Is it possible to embed fonts in an RSL in Flash Builder 4? 

I have tried following this post:
http://flexdevtips.blogspot.com/2009/06/default-stylesheet-in-swc-flex-library.html 

but this only seems to work for flex 3.</description>
		<content:encoded><![CDATA[<p>Is it possible to embed fonts in an RSL in Flash Builder 4? </p>
<p>I have tried following this post:<br />
<a href="http://flexdevtips.blogspot.com/2009/06/default-stylesheet-in-swc-flex-library.html" rel="nofollow">http://flexdevtips.blogspot.com/2009/06/default-stylesheet-in-swc-flex-library.html</a> </p>
<p>but this only seems to work for flex 3.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gaurav</title>
		<link>http://gauravj.com/blog/2009/07/creating-smaller-swfs-part-iii/comment-page-1/#comment-200</link>
		<dc:creator>Gaurav</dc:creator>
		<pubDate>Wed, 05 Aug 2009 03:14:07 +0000</pubDate>
		<guid isPermaLink="false">http://gauravj.com/blog/?p=376#comment-200</guid>
		<description>I don&#039;t believe that there is any readily available function to do this. But you can dispatch an event from the module which the parent app can listen for and then unload the module.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t believe that there is any readily available function to do this. But you can dispatch an event from the module which the parent app can listen for and then unload the module.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
