<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>rabidGadfly</title>
	
	<link>http://www.rabidgadfly.com</link>
	<description>Glenn Gervais's methods, tips, and musings on Flash, ColdFusion, XML, and other web technology.</description>
	<lastBuildDate>Fri, 21 May 2010 11:58:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/rabidGadfly/blog" /><feedburner:info uri="rabidgadfly/blog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Font Embedding with Flash Builder 4</title>
		<link>http://feedproxy.google.com/~r/rabidGadfly/blog/~3/18kIOX1EzWk/</link>
		<comments>http://www.rabidgadfly.com/index.php/2010/04/30/font-embedding-with-flash-builder-4/#comments</comments>
		<pubDate>Sat, 01 May 2010 00:41:56 +0000</pubDate>
		<dc:creator>rabidGadfly</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[embed font]]></category>
		<category><![CDATA[flash builder]]></category>
		<category><![CDATA[font]]></category>

		<guid isPermaLink="false">http://www.rabidgadfly.com/?p=321</guid>
		<description><![CDATA[I&#8217;ve been noodling around a bit with Flash Builder 4 lately. After creating a few simple apps I decided to look into font embedding. There are quite a few posts to be found via Googling about embedding fonts in Flex. Some are very good, others not so much, but I think I managed to compile [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been noodling around a bit with Flash Builder 4 lately. After creating a few simple apps I decided to look into font embedding. There are quite a few posts to be found via Googling about embedding fonts in Flex. Some are very good, others not so much, but I think I managed to compile the info into a useful example. My goal was to create custom font swfs, load them into flex, and then apply them to a text field through the use of some type of selector. </p>
<h4>1. Create the Font SWF</h4>
<p><a href="http://www.rabidgadfly.com/wp-content/uploads/charembed.jpg"><img style="border:1px solid #ccc;margin:0 10px 5px 10px;"  src="http://www.rabidgadfly.com/wp-content/uploads/charembed.jpg" alt="Embed Characters" title="Embed Characters" width="350" height="303" class="alignright size-full wp-image-324" /></a>The first step is to use Flash to create a font swf. To do so, create a new Flash document and add a dynamic text field to the stage. Select the text field and choose the font you want to use in your Flex application. Next, click the Character Embedding button from the Property panel and choose the characters that you want available to your Flex application. Choose only the characters you need as each extra character will add unnecessary size. Finally, publish the swf and place a copy in your Flex application folder. </p>
<p>Make a font swf for each font you want to use in your Flex application then close Flash.</p>
<h4>2. Embed the Font SWF</h4>
<p>The next step is to pull those font swfs into your Flex application and create classes, or styleNames, for them. This is done inside the fx:Style tag (mx:Style in Flex 3)</p>
<pre class="brush: xml;">
&lt;fx:Style &gt;
		@namespace s &quot;library://ns.adobe.com/flex/spark&quot;;
		@namespace mx &quot;library://ns.adobe.com/flex/mx&quot;;

		@font-face	{
			src: url(&quot;fonts/calvin.swf&quot;);
			font-family: &quot;Calvin and Hobbes&quot;;
		}
		@font-face {
			src:url(&quot;fonts/lcd.swf&quot;);
			font-family:&quot;LCD&quot;;
		}
		@font-face {
			src:url(&quot;fonts/ransom.swf&quot;);
			font-family:&quot;RansomNote&quot;;
		}

		.calvin {font-family: &quot;Calvin and Hobbes&quot;;}
		.lcd {font-family: &quot;LCD&quot;;}
		.ransom {font-family: &quot;RansomNote&quot;;}		

	&lt;/fx:Style&gt;
</pre>
<p>Note that the font-family is the name of the font as listed in the Flash IDE. Once this is done I can assign the styleNames &#8220;smack&#8221;, &#8220;square&#8221;, and &#8220;curlz&#8221; to an mx:Text field and it will be presented in that font, something like this:</p>
<pre class="brush: xml;">
&lt;mx:Text id=&quot;myText&quot; text=&quot;This is my text&quot; styleName=&quot;calvin&quot;  /&gt;
</pre>
<p>If you stop here you will have a text field using your embedded font.</p>
<h4>3. Create a Font Selector</h4>
<p>We can take this an additional step by adding a radio button group and a simple function to allow dynamic switching between fonts:</p>
<pre class="brush: xml;">
&lt;fx:Declarations&gt;
	&lt;s:RadioButtonGroup id=&quot;radiogroup1&quot;/&gt;
&lt;/fx:Declarations&gt;
&lt;mx:Text id=&quot;myText&quot; x=&quot;159&quot; y=&quot;28&quot; text=&quot;Select another font&quot; styleName=&quot;calvin&quot;   fontSize=&quot;20&quot;/&gt;
&lt;s:RadioButton id=&quot;calvin&quot; x=&quot;10&quot; y=&quot;10&quot; label=&quot;Calvin&quot; groupName=&quot;radiogroup1&quot; click=&quot;handleChangeFont(event)&quot; selected=&quot;true&quot;/&gt;
&lt;s:RadioButton id=&quot;lcd&quot; x=&quot;10&quot; y=&quot;36&quot; label=&quot;LCD&quot; groupName=&quot;radiogroup1&quot; click=&quot;handleChangeFont(event)&quot;/&gt;
&lt;s:RadioButton id=&quot;ransom&quot; y=&quot;62&quot; label=&quot;Ransom Note&quot; groupName=&quot;radiogroup1&quot; click=&quot;handleChangeFont(event)&quot; x=&quot;10&quot;/&gt;
</pre>
<p>Note that, as an id for each radiobutton I used the class name they will invoke. This will allow me to use only one line of code in one function to assign the appropriate styleName to my text field:</p>
<pre class="brush: as3;">
&lt;fx:Script&gt;
	&lt;![CDATA[

		protected function handleChangeFont(evt:Event):void {
		myText.styleName = evt.target.id;
	        }

	]]&gt;
&lt;/fx:Script&gt;
</pre>
<p>The finished product looks something like this:</p>
<div align="center" style="margin:15px auto;">

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_FontEmbedding_1732613547"
			class="flashmovie"
			width="500"
			height="100">
	<param name="movie" value="http://www.rabidgadfly.com/swf/fontembedding/FontEmbedding.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.rabidgadfly.com/swf/fontembedding/FontEmbedding.swf"
			name="fm_FontEmbedding_1732613547"
			width="500"
			height="100">
	<!--<![endif]-->
		
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
</div>
<p style="margin:5px 5px 20px 5px;">Right-click on the swf and then click &#8220;View Source&#8221; to view or download the source.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/rabidGadfly/blog?a=18kIOX1EzWk:OQNd9BubO4s:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/rabidGadfly/blog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/rabidGadfly/blog?a=18kIOX1EzWk:OQNd9BubO4s:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/rabidGadfly/blog?i=18kIOX1EzWk:OQNd9BubO4s:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/rabidGadfly/blog?a=18kIOX1EzWk:OQNd9BubO4s:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/rabidGadfly/blog?i=18kIOX1EzWk:OQNd9BubO4s:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/rabidGadfly/blog?a=18kIOX1EzWk:OQNd9BubO4s:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/rabidGadfly/blog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/rabidGadfly/blog?a=18kIOX1EzWk:OQNd9BubO4s:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/rabidGadfly/blog?i=18kIOX1EzWk:OQNd9BubO4s:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/rabidGadfly/blog?a=18kIOX1EzWk:OQNd9BubO4s:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/rabidGadfly/blog?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/rabidGadfly/blog/~4/18kIOX1EzWk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.rabidgadfly.com/index.php/2010/04/30/font-embedding-with-flash-builder-4/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.rabidgadfly.com/index.php/2010/04/30/font-embedding-with-flash-builder-4/</feedburner:origLink></item>
		<item>
		<title>Simple XML-Driven Flash AS3 Slider</title>
		<link>http://feedproxy.google.com/~r/rabidGadfly/blog/~3/qMKRo-QTVVE/</link>
		<comments>http://www.rabidgadfly.com/index.php/2010/04/20/simple-xml-driven-flash-as3-slider/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 13:20:47 +0000</pubDate>
		<dc:creator>rabidGadfly</dc:creator>
				<category><![CDATA[as3]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[slide]]></category>
		<category><![CDATA[slider]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.rabidgadfly.com/?p=250</guid>
		<description><![CDATA[

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm__118693161"
			class="flashmovie"
			width="300"
			height="250">
	<param name="movie" value="http://www.rabidgadfly.com/swf/slider.swf?contentfolder=/swf/slidercontent/" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.rabidgadfly.com/swf/slider.swf?contentfolder=/swf/slidercontent/"
			name="fm__118693161"
			width="300"
			height="250">
	<!--<![endif]-->
		
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
Download the source here

When I was creating my coding portfolio I wanted a slider app that would display a series of screenshots from some of my recent projects. While it was easy to find several WordPress widgets that presented slideshows, it was very difficult to find one that allowed multiple instances [...]]]></description>
			<content:encoded><![CDATA[<div align="center" style="float:right;display:inline;padding:5px 0 5px 10px;">

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm__419228776"
			class="flashmovie"
			width="300"
			height="250">
	<param name="movie" value="http://www.rabidgadfly.com/swf/slider.swf?contentfolder=/swf/slidercontent/" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.rabidgadfly.com/swf/slider.swf?contentfolder=/swf/slidercontent/"
			name="fm__419228776"
			width="300"
			height="250">
	<!--<![endif]-->
		
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object><br />
Download the source <a href="http://www.rabidgadfly.com/fla/slider_rg.zip">here</a>
</div>
<p>When I was creating my <a href="http://www.rabidgadfly.com/index.php/coding-portfolio/" alt="My coding portfolio">coding portfolio</a> I wanted a slider app that would display a series of screenshots from some of my recent projects. While it was easy to find several WordPress widgets that presented slideshows, it was very difficult to find one that allowed multiple instances on the same page. Many didn&#8217;t even allow multiple instances across the blog.</p>
<p>I decided it would be easiest to create one myself. Admittedly it&#8217;s nothing flashy, but it fit the purpose well and I thought it may be useful to post. It utilizes Tweener, an amazingly simple open-source tweening library, for transitions. The library is included with the source. Other version and documentation are available on <a href="http://code.google.com/p/tweener/">Google code</a>.</p>
<h3>How to set up a slider</h3>
<ol>
<li>Create a subfolder under the folder where the slider swf will be stored. Each slideshow must have its own separate subfolder.
<li>Create a series of 250px(w) x 175px(h) images and place them in the subfolder.</li>
<li>Create an XML file named slides.xml in the subfolder with your images. This involves adding the image name, an optional title, and an optional description. The structure is as follows:
<pre class="brush: xml;">
&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&lt;slides&gt;
	&lt;slide&gt;
		&lt;title&gt;Slide 1 Title&lt;/title&gt;
		&lt;desc&gt;Here is a description of Slide 1&lt;/desc&gt;
		&lt;image&gt;slide1.png&lt;/image&gt;
	&lt;/slide&gt;
	&lt;slide&gt;
		&lt;title&gt;Slide 2 Title&lt;/title&gt;
		&lt;desc&gt;Here is a description of Slide 2&lt;/desc&gt;
		&lt;image&gt;slide2.png&lt;/image&gt;
	&lt;/slide&gt;
&lt;/slides&gt;
</pre>
</li>
<li>VERY IMPORTANT: Pass the folder path to the SWF as a flashvar named contentfolder. For example, if you&#8217;re using Adobe&#8217;s embedding method and your xml and images are on your site under /swf/myslides, you would add <strong>&#8216;flashvars&#8217;,'contentfolder=/swf/myslides/&#8217;</strong> at the end of the AC_FL_RunContent function (don&#8217;t forget to add a comma before it to separate it from the other values). </li>
</ol>
<h3>Tips</h3>
<ul>
<li>The code is in a <a href="http://www.adobe.com/devnet/flash/quickstart/external_files_as3/" alt="What is a document class?" target="_blank">document class</a> named CustomDocument.as under the com subfolder.</li>
<li>If you want to change the navigation buttons, you can change them in the library. nextGraphic and prevGraphic are the base graphics and Next and Prev apply filtering and state modifications.</li>
<li>If you want slides of a different size, it should only take a couple of tweaks. First, resize your document ( Modify > Document ). Then, modify the buttons and Slide to accommodate your new size. These objects are in the library (The Next and Previous buttons, and the Slide itself, are all in the library ( Window > Library ). Finally, modify the nextX and nextY variables in the CustomDocument.as file. nextX is the X coordinate where the first slide will be placed. nextY is the Y coordinate.</li>
<li>The source is packaged using the _sans device font. You can change the font inside the Slide movie clip. Remember to embed the characters or your font will not appear!</li>
<li>If your images won&#8217;t load then you&#8217;re probably either forgetting to pass the contentfolder flashvar, or your images aren&#8217;t in the right place. <a href="http://getfirebug.com/" target="_blank">Firebug</a> is a great tool for troubleshooting this issue.</li>
</ul>
<p style="padding:20px;">Glenn</p>
<p><a href="http://www.rabidgadfly.com/fla/slider_rg.zip"><img caption="Download source" align="right" src="http://www.rabidgadfly.com/images/download.png" alt="Download the AS3 Slider source" title="AS3 Slider source" width="74" height="56" border="0" /></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/rabidGadfly/blog?a=qMKRo-QTVVE:xChorpAQU70:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/rabidGadfly/blog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/rabidGadfly/blog?a=qMKRo-QTVVE:xChorpAQU70:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/rabidGadfly/blog?i=qMKRo-QTVVE:xChorpAQU70:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/rabidGadfly/blog?a=qMKRo-QTVVE:xChorpAQU70:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/rabidGadfly/blog?i=qMKRo-QTVVE:xChorpAQU70:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/rabidGadfly/blog?a=qMKRo-QTVVE:xChorpAQU70:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/rabidGadfly/blog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/rabidGadfly/blog?a=qMKRo-QTVVE:xChorpAQU70:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/rabidGadfly/blog?i=qMKRo-QTVVE:xChorpAQU70:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/rabidGadfly/blog?a=qMKRo-QTVVE:xChorpAQU70:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/rabidGadfly/blog?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/rabidGadfly/blog/~4/qMKRo-QTVVE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.rabidgadfly.com/index.php/2010/04/20/simple-xml-driven-flash-as3-slider/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.rabidgadfly.com/index.php/2010/04/20/simple-xml-driven-flash-as3-slider/</feedburner:origLink></item>
		<item>
		<title>FBTracer: Flash Tracer Chocolate in Firebug Peanut Butter</title>
		<link>http://feedproxy.google.com/~r/rabidGadfly/blog/~3/cCzO0bW7rCk/</link>
		<comments>http://www.rabidgadfly.com/index.php/2010/04/02/fbtracer-flash-tracer-chocolate-in-firebug-peanut-butter/#comments</comments>
		<pubDate>Fri, 02 Apr 2010 14:38:16 +0000</pubDate>
		<dc:creator>rabidGadfly</dc:creator>
				<category><![CDATA[extension]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[as2]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[debug]]></category>
		<category><![CDATA[fbtracer]]></category>
		<category><![CDATA[firebug]]></category>
		<category><![CDATA[flashtracer]]></category>
		<category><![CDATA[trace]]></category>
		<category><![CDATA[tracing]]></category>

		<guid isPermaLink="false">http://www.rabidgadfly.com/?p=152</guid>
		<description><![CDATA[As a longtime fan of both Flash Tracer, the Firefox Flash tracing extension, and Firebug, arguably the best free web development extension available, I was ecstatic to hear that Alessandro Crugnola had created a FlashTracer plug-in for Firebug. 
While it&#8217;s possible to have both individual Flash Tracer and Firebug extensions running at the same time, [...]]]></description>
			<content:encoded><![CDATA[<p>As a longtime fan of both <a href="http://www.sephiroth.it/firefox/flashtracer/" alt="Flash Tracer">Flash Tracer</a>, the Firefox Flash tracing extension, and <a href="http://getfirebug.com/" alt="Firebug">Firebug</a>, arguably the best free web development extension available, I was ecstatic to hear that Alessandro Crugnola had created a FlashTracer plug-in for Firebug. </p>
<p>While it&#8217;s possible to have both individual Flash Tracer and Firebug extensions running at the same time, performance often suffers significantly. Adding Flash Tracer as a Firebug extension seems to have improved performance while making it more convenient and accessible.</p>
<p>As of this writing, it&#8217;s still in early beta but it&#8217;s working well enough for me. Check it out for yourself at <a href="http://www.sephiroth.it/firefox/fbtracer/" alt="FBTracer">sephiroth.it</a> .</p>
<div style="width:600px;text-align:center;margin:15px 0;"><img align="center" style="border:1px solid #000;" src="http://www.rabidgadfly.com/wp-content/uploads/fbtracer.png" alt="FBTracer" title="FBTracer" width="471" height="270" class="size-full wp-image-154" /></div>
<p>- Glenn</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/rabidGadfly/blog?a=cCzO0bW7rCk:SMulzToNpNY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/rabidGadfly/blog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/rabidGadfly/blog?a=cCzO0bW7rCk:SMulzToNpNY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/rabidGadfly/blog?i=cCzO0bW7rCk:SMulzToNpNY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/rabidGadfly/blog?a=cCzO0bW7rCk:SMulzToNpNY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/rabidGadfly/blog?i=cCzO0bW7rCk:SMulzToNpNY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/rabidGadfly/blog?a=cCzO0bW7rCk:SMulzToNpNY:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/rabidGadfly/blog?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/rabidGadfly/blog?a=cCzO0bW7rCk:SMulzToNpNY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/rabidGadfly/blog?i=cCzO0bW7rCk:SMulzToNpNY:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/rabidGadfly/blog?a=cCzO0bW7rCk:SMulzToNpNY:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/rabidGadfly/blog?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/rabidGadfly/blog/~4/cCzO0bW7rCk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.rabidgadfly.com/index.php/2010/04/02/fbtracer-flash-tracer-chocolate-in-firebug-peanut-butter/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.rabidgadfly.com/index.php/2010/04/02/fbtracer-flash-tracer-chocolate-in-firebug-peanut-butter/</feedburner:origLink></item>
	</channel>
</rss>
