<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ActionScript Examples &#187; Embed</title>
	<atom:link href="http://actionscriptexamples.com/category/embed/feed/" rel="self" type="application/rss+xml" />
	<link>http://actionscriptexamples.com</link>
	<description>A bunch of ActionScript 2.0 and ActionScript 3.0 examples*</description>
	<lastBuildDate>Mon, 28 Jun 2010 18:23:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Embedding fonts from a Flex application into a Flash SWF file</title>
		<link>http://actionscriptexamples.com/2008/12/20/embedding-fonts-from-a-flex-application-into-a-flash-swf-file/</link>
		<comments>http://actionscriptexamples.com/2008/12/20/embedding-fonts-from-a-flex-application-into-a-flash-swf-file/#comments</comments>
		<pubDate>Sun, 21 Dec 2008 06:27:20 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[Embed]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Font]]></category>
		<category><![CDATA[embedFonts]]></category>
		<category><![CDATA[TextField]]></category>
		<category><![CDATA[textFormat]]></category>

		<guid isPermaLink="false">http://actionscriptexamples.com/?p=224</guid>
		<description><![CDATA[The following examples show how you can embed a font from a Flex Library Project into a Flash application. Note: For an example of embedding a font from Flash into Flex, see &#8220;Embedding fonts from a Flash SWF file into a Flex application&#8221; at FlexExamples.com. Full code after the jump. In Flex Builder 3, create [...]]]></description>
		<wfw:commentRss>http://actionscriptexamples.com/2008/12/20/embedding-fonts-from-a-flex-application-into-a-flash-swf-file/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Embedding fonts in Flash CS4 using ActionScript</title>
		<link>http://actionscriptexamples.com/2008/11/24/embedding-fonts-in-flash-cs4-using-actionscript/</link>
		<comments>http://actionscriptexamples.com/2008/11/24/embedding-fonts-in-flash-cs4-using-actionscript/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 00:43:39 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[Embed]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://actionscriptexamples.com/?p=32</guid>
		<description><![CDATA[The following example shows how you can use the Flex SDK in Flash CS4 to embed a font using the [Embed] metadata. Full code after the jump. // ActionScript 3.0 &#91;Embed&#40;source=&#34;assets/ARIAL.TTF&#34;, fontFamily=&#34;ArialEmbedded&#34;&#41;&#93; var ArialEmbedded:Class; &#160; var arialEmbeddedFont:Font = new ArialEmbedded&#40;&#41;; &#160; var textFormat:TextFormat = new TextFormat&#40;&#41;; textFormat.color = 0xFF0000; textFormat.font = arialEmbeddedFont.fontName; textFormat.size = 32; [...]]]></description>
		<wfw:commentRss>http://actionscriptexamples.com/2008/11/24/embedding-fonts-in-flash-cs4-using-actionscript/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Embedding images into a Flash document using the [Embed] metadata</title>
		<link>http://actionscriptexamples.com/2008/10/26/embedding-images-into-a-flash-document-using-the-embed-metadata/</link>
		<comments>http://actionscriptexamples.com/2008/10/26/embedding-images-into-a-flash-document-using-the-embed-metadata/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 18:06:24 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[Embed]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://actionscriptexamples.com/?p=27</guid>
		<description><![CDATA[The following example shows how you can use the [Embed] metadata in Flash CS4 to embed assets into a Flash document using ActionScript. Full code after the jump. For more examples of Flash CS4 and Flex SDK integration, see my coworker Tareq AlJaber&#8217;s Flash Authoring blog. The following example embeds a .PNG file (bullet_red.png) from [...]]]></description>
		<wfw:commentRss>http://actionscriptexamples.com/2008/10/26/embedding-images-into-a-flash-document-using-the-embed-metadata/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Using the Flex SDK with Flash CS4</title>
		<link>http://actionscriptexamples.com/2008/10/26/using-the-flex-sdk-with-flash-cs4/</link>
		<comments>http://actionscriptexamples.com/2008/10/26/using-the-flex-sdk-with-flash-cs4/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 17:59:16 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[Embed]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://actionscriptexamples.com/?p=28</guid>
		<description><![CDATA[The following example shows how you can use the [Embed] metadata and the Flex SDK to embed assets within your Flash applications (instead of manually importing assets into the Library panel). Full code after the jump. For more examples of Flash CS4 and Flex SDK integration, see my coworker Tareq AlJaber&#8217;s Flash Authoring blog. Flash [...]]]></description>
		<wfw:commentRss>http://actionscriptexamples.com/2008/10/26/using-the-flex-sdk-with-flash-cs4/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
