<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

			<channel>
			<title>ShortFusion Blog - Pure Actionscript</title>
			<link>http://blog.shortfusion.com/index.cfm</link>
			<description>Furious Coding</description>
			<language>en-us</language>
			<pubDate>Wed, 08 Sep 2010 23:45:02 -0500</pubDate>
			<lastBuildDate>Wed, 24 Jun 2009 23:23:00 -0500</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>alex@shortfusion.com</managingEditor>
			<webMaster>alex@shortfusion.com</webMaster>
			<itunes:subtitle>Jason&apos;s acronym to go here</itunes:subtitle>
			<itunes:summary>Coldfusion, Flex and more tech blog</itunes:summary>
			<itunes:category text="Technology" />
			<itunes:category text="Technology">
				<itunes:category text="Podcasting" />
			</itunes:category>
			<itunes:category text="Technology">
				<itunes:category text="Tech News" />
			</itunes:category>
			<itunes:keywords>Shortfusion Blog</itunes:keywords>
			<itunes:author>ShortFusion (Alex Frates &amp; Jason Olmsted)</itunes:author>
			<itunes:owner>
				<itunes:email>alex@shortfusion.com</itunes:email>
				<itunes:name>ShortFusion (Alex Frates &amp; Jason Olmsted)</itunes:name>
			</itunes:owner>
			<itunes:image href="" />
			<image>
				<url></url>
				<title>ShortFusion Blog</title>
				<link>http://blog.shortfusion.com/index.cfm</link>
			</image>
			<itunes:explicit>no</itunes:explicit>
			
			<item>
				<title>Actionscript: TextFormat vs StyleSheet</title>
				<link>http://blog.shortfusion.com/index.cfm/2009/6/24/Actionscript-TextFormat-vs-StyleSheet</link>
				<description>
				
				For handling formatting of TextFields in Actionscript, your two easy options are TextFormat and StyleSheets. And they are mostly equivalent in the level of formatting control that they offer:


&lt;Table border=&quot;1&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td&gt;
&lt;table width=&quot;600&quot; border=&quot;0&quot;&gt;
  &lt;tr&gt;
    &lt;th style=&quot;text-align:left;&quot;&gt;TextFormat&lt;/th&gt;
    &lt;th style=&quot;text-align:left;&quot;&gt;StyleSheet&lt;/th&gt;
    &lt;th style=&quot;text-align:left;&quot;&gt;Note&lt;/th&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;blockIndent&lt;/td&gt;
    &lt;td&gt;-&lt;/td&gt;
    &lt;td&gt;value to indent entire block instead of only first line&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
  	&lt;td&gt;-&lt;/td&gt;
    &lt;td&gt;display&lt;/td&gt;    
    &lt;td&gt;Supported values are inline, block, none&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;bold&lt;/td&gt;
    &lt;td&gt;fontWeight&lt;/td&gt;
    &lt;td&gt;TF: true|false; SS: normal:bold&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;bullet&lt;/td&gt;
    &lt;td&gt;-&lt;/td&gt;
    &lt;td&gt;TF: part of bulleted list&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;color&lt;/td&gt;
    &lt;td&gt;color&lt;/td&gt;
    &lt;td&gt;TF: AS notation (0xFFFFFF); SS: HTML (#FFFFFF)&lt;/td&gt;
  &lt;/tr&gt;  
  &lt;tr&gt;
    &lt;td&gt;font&lt;/td&gt;
    &lt;td&gt;fontFamily&lt;/td&gt;
    &lt;td&gt;TF: 1 font; SS: uses comma separated list of fonts&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;indent&lt;/td&gt;
    &lt;td&gt;textIndent&lt;/td&gt;
    &lt;td&gt;&amp;nbsp;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;italic&lt;/td&gt;
    &lt;td&gt;fontStyle&lt;/td&gt;
    &lt;td&gt;TF: true|false; SS: normal|italic&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;kerning&lt;/td&gt;
    &lt;td&gt;kerning&lt;/td&gt;
    &lt;td&gt;&amp;nbsp;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;leading&lt;/td&gt;
    &lt;td&gt;leading&lt;/td&gt;
    &lt;td&gt;&amp;nbsp;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;leftMargin&lt;/td&gt;
    &lt;td&gt;marginLeft&lt;/td&gt;
    &lt;td&gt;&amp;nbsp;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;letterSpacing&lt;/td&gt;
    &lt;td&gt;letterSpacing&lt;/td&gt;
    &lt;td&gt;&amp;nbsp;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;rightMargin&lt;/td&gt;
    &lt;td&gt;marginRight&lt;/td&gt;
    &lt;td&gt;&amp;nbsp;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;size&lt;/td&gt;
    &lt;td&gt;fontSize&lt;/td&gt;
    &lt;td&gt;&amp;nbsp;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;tabStops&lt;/td&gt;
    &lt;td&gt;-&lt;/td&gt;
    &lt;td&gt;Size of tab&lt;/td&gt;
  &lt;/tr&gt;
    &lt;tr&gt;
    &lt;td&gt;target&lt;/td&gt;
    &lt;td&gt;-&lt;/td&gt;
    &lt;td&gt;target of link if url != null&lt;/td&gt;
  &lt;/tr&gt;
    &lt;tr&gt;
    &lt;td&gt;underline&lt;/td&gt;
    &lt;td&gt;textDecoration&lt;/td&gt;
    &lt;td&gt;TF: true|false; SS: none|underline&lt;/td&gt;
  &lt;/tr&gt;  
  &lt;tr&gt;
    &lt;td&gt;url&lt;/td&gt;
    &lt;td&gt;-&lt;/td&gt;
    &lt;td&gt;Setting to non-null value makes text a clickable link&lt;/td&gt;
  &lt;/tr&gt;  
&lt;/table&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/Table&gt;

(Created from Adobe docs on &lt;a href=&quot;http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/text/StyleSheet.html&quot; target=&quot;_new&quot;&gt;StyleSheets&lt;/a&gt; and &lt;a href=&quot;http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/&quot; target=&quot;_new&quot;&gt;TextFormat&lt;/a&gt;)

The use of the two types of flash text formatting options are very similar as well:  [More]
				</description>
				
				<category>Pure Actionscript</category>				
				
				<category>Flash</category>				
				
				<pubDate>Wed, 24 Jun 2009 23:23:00 -0500</pubDate>
				<guid>http://blog.shortfusion.com/index.cfm/2009/6/24/Actionscript-TextFormat-vs-StyleSheet</guid>
				
			</item>
			
			<item>
				<title>Thoughts on Embedding Fonts In Web Pages &amp; Navigational Menus</title>
				<link>http://blog.shortfusion.com/index.cfm/2009/6/20/Thoughts-on-Embedding-Fonts--Navigational-Menus</link>
				<description>
				
				&lt;p&gt;
I&apos;m working on a little web interface for a friend that involves the use of a specific font for the navigation menu items.  So far, I&apos;ve have been a good little developer and have kept everything neat and tidy.  The html contains just html with imported style sheets and I have eschewed using javascript by positioning everything with CSS.  I can get away with it as a conscious decision was made to ignore IE6 and conform to standards (at least insomuch as the standards are implemented in IE7+, FF3+, and Chrome (assuming that means all webkit browsers &amp; I&apos;ll test to make sure that it looks OK in AIR applications too) ).
&lt;/p&gt;

&lt;p&gt;
But fonts are a pain.  The friend is a designer, the font &lt;em&gt;WILL&lt;/em&gt; be used.  That leaves embedding graphics, sIFR, prepackaged  Flash or custom Flash.  Custom Flash is last because that is what I used, but I will dispatch with the other options as quickly as I can. (There is the @font-face; MS has an &lt;a href=&quot;http://www.microsoft.com/typography/WEFT.mspx&quot; target=&quot;_new&quot;&gt;IE only font embedding scheme&lt;/a&gt;, *.eot files, and FF3.5 will &lt;a href=&quot;https://developer.mozilla.org/en/CSS/@font-face&quot; target=&quot;_new&quot;&gt;support embedding TTFs&lt;/a&gt; but neither is presently practical for wide use.)
&lt;/p&gt;  [More]
				</description>
				
				<category>Pure Actionscript</category>				
				
				<category>Flash</category>				
				
				<category>Open Source</category>				
				
				<pubDate>Sat, 20 Jun 2009 13:55:00 -0500</pubDate>
				<guid>http://blog.shortfusion.com/index.cfm/2009/6/20/Thoughts-on-Embedding-Fonts--Navigational-Menus</guid>
				
			</item>
			
			<item>
				<title>Site Navigation Menus, Pure Actionscript &amp; FlashDevelop</title>
				<link>http://blog.shortfusion.com/index.cfm/2009/2/26/Site-Navigation-Menus-Pure-Actionscript--FlashDevelop</link>
				<description>
				
				&lt;p&gt;
A recent requirement at work had me having to forgo Flex for a Flash project.  I&apos;m replacing a DHTML site navigation system that employs several images, javascript libraries and, more importantly, places over 70 links onto any given page of the site.  I&apos;ve inherited the job of cleaning up the site SEO-wise and all of these links prevent me from cleanly sculpting the site.  At the same time, I am working on improving the performance of the site, and, soon, improving the functionality of the navigation.  
&lt;/p&gt;
&lt;p&gt;
Anyway, while I like Flex - really, I like Flex, we need to get a room or something - she can be too heavy for some tasks, and the thought of dropping over &lt;strong&gt;100KB&lt;/strong&gt; of Flashy goodness on everything single page of the site is less than desirable.  Instead, at my current level, I am more than halfway there just using a pure Actionscript Flash project and I have kept my SWF size down to under &lt;strong&gt;4KB&lt;/strong&gt;. Keep in mind, I am using an XML supporting doc that adds 7KB or so, but I would use the same file for Flex or Flash.  [More]
				</description>
				
				<category>Pure Actionscript</category>				
				
				<category>Flash</category>				
				
				<category>SEO</category>				
				
				<category>Open Source</category>				
				
				<pubDate>Thu, 26 Feb 2009 23:10:00 -0500</pubDate>
				<guid>http://blog.shortfusion.com/index.cfm/2009/2/26/Site-Navigation-Menus-Pure-Actionscript--FlashDevelop</guid>
				
			</item>
			</channel></rss>