<?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>deleteaso &#187; Extensions</title>
	<atom:link href="http://deleteaso.com/category/extensions/feed/" rel="self" type="application/rss+xml" />
	<link>http://deleteaso.com</link>
	<description>When something's not working delete aso files</description>
	<lastBuildDate>Tue, 25 Oct 2011 13:32:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Fix Textfields JSFL</title>
		<link>http://deleteaso.com/fix-textfields-jsfl/</link>
		<comments>http://deleteaso.com/fix-textfields-jsfl/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 21:48:01 +0000</pubDate>
		<dc:creator>julian</dc:creator>
				<category><![CDATA[Extensions]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[JSFL]]></category>

		<guid isPermaLink="false">http://deleteaso.com/?p=183</guid>
		<description><![CDATA[Today Seb was having some issues when dealing with embedded fonts &#8211; read his post. He came up with some ActionScript ways to get around it. Well another way would be to use JSFL. A couple of my team members at Fuel Industries wrote the following JSFL script. It goes through your library and searches [...]]]></description>
			<content:encoded><![CDATA[<p>Today Seb was having some issues when dealing with embedded fonts &#8211; <a href="http://www.sebleedelisle.com/2009/08/font-embedding-wtf-in-flash/" target="_blank">read his post.</a> He came up with some ActionScript ways to get around it. Well another way would be to use JSFL. A couple of my team members at Fuel Industries wrote the following JSFL script. It goes through your library and searches out any dynamic textfields. Once it finds one it makes sure it&#8217;s on a whole pixel, turns the auto kern off, embeds &#8220;UpperCase, LowerCase, Numerals, Punctuation&#8221; characters, and makes it not selectable. But you could make it do pretty much anything you can through JSFL.</p>
<p></p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">fl.<span style="color: #660066;">outputPanel</span>.<span style="color: #660066;">clear</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
scanLibrary<span style="color: #009900;">&#40;</span>fl.<span style="color: #660066;">getDocumentDOM</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">library</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
&nbsp;
&nbsp;
<span style="color: #003366; font-weight: bold;">function</span> getIsWholeInt<span style="color: #009900;">&#40;</span>n<span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
	<span style="color: #003366; font-weight: bold;">var</span> s <span style="color: #339933;">=</span> String<span style="color: #009900;">&#40;</span>n<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>s.<span style="color: #660066;">indexOf</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;.&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">!=</span> <span style="color: #339933;">-</span><span style="color: #CC0000;">1</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
		<span style="color: #000066; font-weight: bold;">return</span> <span style="color: #003366; font-weight: bold;">false</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
	<span style="color: #000066; font-weight: bold;">else</span>
	<span style="color: #009900;">&#123;</span>
		<span style="color: #000066; font-weight: bold;">return</span> <span style="color: #003366; font-weight: bold;">true</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #003366; font-weight: bold;">function</span> round<span style="color: #009900;">&#40;</span>n<span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
	<span style="color: #003366; font-weight: bold;">var</span> s <span style="color: #339933;">=</span> String<span style="color: #009900;">&#40;</span>n<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #003366; font-weight: bold;">var</span> a <span style="color: #339933;">=</span> s.<span style="color: #660066;">split</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;.&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #003366; font-weight: bold;">var</span> num <span style="color: #339933;">=</span> parseInt<span style="color: #009900;">&#40;</span>a<span style="color: #009900;">&#91;</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #003366; font-weight: bold;">var</span> dec <span style="color: #339933;">=</span> parseInt<span style="color: #009900;">&#40;</span>a<span style="color: #009900;">&#91;</span><span style="color: #CC0000;">1</span><span style="color: #009900;">&#93;</span>.<span style="color: #660066;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #CC0000;">0</span><span style="color: #339933;">,</span> <span style="color: #CC0000;">1</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>dec <span style="color: #339933;">&gt;=</span> <span style="color: #CC0000;">5</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
		num<span style="color: #339933;">++;</span>
	<span style="color: #009900;">&#125;</span>
	<span style="color: #000066; font-weight: bold;">return</span> num<span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #006600; font-style: italic;">/**
 * Scans the supplied flash library for linked classes and makes sure the textfields are set up properly
 * @param 	library		A flash library to scan.
 */</span>
<span style="color: #003366; font-weight: bold;">function</span> scanLibrary<span style="color: #009900;">&#40;</span>library<span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
    <span style="color: #003366; font-weight: bold;">var</span> items <span style="color: #339933;">=</span> library.<span style="color: #660066;">items</span><span style="color: #339933;">;</span>
    <span style="color: #003366; font-weight: bold;">var</span> <span style="color: #000066; font-weight: bold;">item</span><span style="color: #339933;">;</span>
	<span style="color: #003366; font-weight: bold;">var</span> replaceCount <span style="color: #339933;">=</span> <span style="color: #CC0000;">0</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #000066; font-weight: bold;">for</span><span style="color: #009900;">&#40;</span> <span style="color: #003366; font-weight: bold;">var</span> i <span style="color: #339933;">=</span> <span style="color: #CC0000;">0</span><span style="color: #339933;">;</span> i <span style="color: #339933;">&lt;</span> items.<span style="color: #660066;">length</span><span style="color: #339933;">;</span> i<span style="color: #339933;">++</span> <span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
        <span style="color: #000066; font-weight: bold;">item</span> <span style="color: #339933;">=</span> items<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
		<span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">item</span>.<span style="color: #660066;">itemType</span> <span style="color: #339933;">==</span> <span style="color: #3366CC;">'movie clip'</span><span style="color: #009900;">&#41;</span> 
		<span style="color: #009900;">&#123;</span>
			<span style="color: #003366; font-weight: bold;">var</span> timeline <span style="color: #339933;">=</span> <span style="color: #000066; font-weight: bold;">item</span>.<span style="color: #660066;">timeline</span><span style="color: #339933;">;</span>
			<span style="color: #003366; font-weight: bold;">var</span> h <span style="color: #339933;">=</span> timeline.<span style="color: #660066;">layerCount</span><span style="color: #339933;">;</span>
&nbsp;
			library.<span style="color: #660066;">selectItem</span><span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">item</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			library.<span style="color: #660066;">editItem</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
			<span style="color: #000066; font-weight: bold;">while</span><span style="color: #009900;">&#40;</span>h<span style="color: #339933;">--</span><span style="color: #009900;">&#41;</span>
			<span style="color: #009900;">&#123;</span>
				<span style="color: #003366; font-weight: bold;">var</span> k <span style="color: #339933;">=</span> timeline.<span style="color: #660066;">layers</span><span style="color: #009900;">&#91;</span>h<span style="color: #009900;">&#93;</span>.<span style="color: #660066;">frameCount</span><span style="color: #339933;">;</span>
&nbsp;
				<span style="color: #000066; font-weight: bold;">while</span><span style="color: #009900;">&#40;</span>k<span style="color: #339933;">--</span><span style="color: #009900;">&#41;</span>
				<span style="color: #009900;">&#123;</span>
					<span style="color: #003366; font-weight: bold;">var</span> j <span style="color: #339933;">=</span> timeline.<span style="color: #660066;">layers</span><span style="color: #009900;">&#91;</span>h<span style="color: #009900;">&#93;</span>.<span style="color: #660066;">frames</span><span style="color: #009900;">&#91;</span>k<span style="color: #009900;">&#93;</span>.<span style="color: #660066;">elements</span>.<span style="color: #660066;">length</span><span style="color: #339933;">;</span>
&nbsp;
					<span style="color: #000066; font-weight: bold;">while</span><span style="color: #009900;">&#40;</span>j<span style="color: #339933;">--</span><span style="color: #009900;">&#41;</span>
					<span style="color: #009900;">&#123;</span>
						<span style="color: #003366; font-weight: bold;">var</span> elems <span style="color: #339933;">=</span> timeline.<span style="color: #660066;">layers</span><span style="color: #009900;">&#91;</span>h<span style="color: #009900;">&#93;</span>.<span style="color: #660066;">frames</span><span style="color: #009900;">&#91;</span>k<span style="color: #009900;">&#93;</span>.<span style="color: #660066;">elements</span><span style="color: #339933;">;</span>
						<span style="color: #003366; font-weight: bold;">var</span> p <span style="color: #339933;">=</span> elems.<span style="color: #660066;">length</span><span style="color: #339933;">;</span>
&nbsp;
						<span style="color: #000066; font-weight: bold;">while</span><span style="color: #009900;">&#40;</span>p<span style="color: #339933;">--</span><span style="color: #009900;">&#41;</span>
						<span style="color: #009900;">&#123;</span>
							<span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>elems<span style="color: #009900;">&#91;</span>p<span style="color: #009900;">&#93;</span>.<span style="color: #660066;">elementType</span> <span style="color: #339933;">==</span> <span style="color: #3366CC;">&quot;text&quot;</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #009900;">&#40;</span>elems<span style="color: #009900;">&#91;</span>p<span style="color: #009900;">&#93;</span>.<span style="color: #660066;">textType</span> <span style="color: #339933;">==</span> <span style="color: #3366CC;">&quot;dynamic&quot;</span> <span style="color: #339933;">||</span> elems<span style="color: #009900;">&#91;</span>p<span style="color: #009900;">&#93;</span>.<span style="color: #660066;">textType</span> <span style="color: #339933;">==</span> <span style="color: #3366CC;">&quot;input&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
							<span style="color: #009900;">&#123;</span>
								<span style="color: #006600; font-style: italic;">//Change the Static Text Fields to Dynamic</span>
								<span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>elems<span style="color: #009900;">&#91;</span>p<span style="color: #009900;">&#93;</span>.<span style="color: #660066;">textType</span> <span style="color: #339933;">==</span> <span style="color: #3366CC;">&quot;static&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
									elems<span style="color: #009900;">&#91;</span>p<span style="color: #009900;">&#93;</span>.<span style="color: #660066;">textType</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;dynamic&quot;</span><span style="color: #339933;">;</span>
								<span style="color: #009900;">&#125;</span>
&nbsp;
								<span style="color: #006600; font-style: italic;">//Handle all Dynamic TextFields</span>
								<span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>elems<span style="color: #009900;">&#91;</span>p<span style="color: #009900;">&#93;</span>.<span style="color: #660066;">textType</span> <span style="color: #339933;">==</span> <span style="color: #3366CC;">&quot;dynamic&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
									<span style="color: #006600; font-style: italic;">//Remove the ability to be selectable</span>
									elems<span style="color: #009900;">&#91;</span>p<span style="color: #009900;">&#93;</span>.<span style="color: #660066;">selectable</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">false</span><span style="color: #339933;">;</span>
								<span style="color: #009900;">&#125;</span>
&nbsp;
								<span style="color: #006600; font-style: italic;">//Handle all Dynamic or Input Textfields</span>
&nbsp;
								<span style="color: #006600; font-style: italic;">//Remove the auto kern attribute</span>
								elems<span style="color: #009900;">&#91;</span>p<span style="color: #009900;">&#93;</span>.<span style="color: #660066;">setTextAttr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'autoKern'</span><span style="color: #339933;">,</span> <span style="color: #003366; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
								<span style="color: #006600; font-style: italic;">//Embed fonts UpperCase, LowerCase, Numerals, Punctuation</span>
								elems<span style="color: #009900;">&#91;</span>p<span style="color: #009900;">&#93;</span>.<span style="color: #660066;">embedRanges</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;1|2|3|4&quot;</span><span style="color: #339933;">;</span>
&nbsp;
								<span style="color: #006600; font-style: italic;">//Pop onto whole pixel</span>
								<span style="color: #003366; font-weight: bold;">var</span> matX <span style="color: #339933;">=</span> elems<span style="color: #009900;">&#91;</span>p<span style="color: #009900;">&#93;</span>.<span style="color: #660066;">matrix</span><span style="color: #339933;">;</span>
								<span style="color: #003366; font-weight: bold;">var</span> x <span style="color: #339933;">=</span> matX.<span style="color: #660066;">tx</span><span style="color: #339933;">;</span>
								<span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>getIsWholeInt<span style="color: #009900;">&#40;</span>x<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
								<span style="color: #009900;">&#123;</span>
									matX.<span style="color: #660066;">tx</span> <span style="color: #339933;">=</span> round<span style="color: #009900;">&#40;</span>x<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
									elems<span style="color: #009900;">&#91;</span>p<span style="color: #009900;">&#93;</span>.<span style="color: #660066;">matrix</span> <span style="color: #339933;">=</span> matX<span style="color: #339933;">;</span>
								<span style="color: #009900;">&#125;</span>
&nbsp;
								<span style="color: #003366; font-weight: bold;">var</span> matY <span style="color: #339933;">=</span> elems<span style="color: #009900;">&#91;</span>p<span style="color: #009900;">&#93;</span>.<span style="color: #660066;">matrix</span><span style="color: #339933;">;</span>
								<span style="color: #003366; font-weight: bold;">var</span> y <span style="color: #339933;">=</span> matY.<span style="color: #660066;">ty</span><span style="color: #339933;">;</span>
								<span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>getIsWholeInt<span style="color: #009900;">&#40;</span>y<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
								<span style="color: #009900;">&#123;</span>
									matY.<span style="color: #660066;">ty</span> <span style="color: #339933;">=</span> round<span style="color: #009900;">&#40;</span>y<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
									elems<span style="color: #009900;">&#91;</span>p<span style="color: #009900;">&#93;</span>.<span style="color: #660066;">matrix</span> <span style="color: #339933;">=</span> matY<span style="color: #339933;">;</span>
								<span style="color: #009900;">&#125;</span>
&nbsp;
							<span style="color: #009900;">&#125;</span>
						<span style="color: #009900;">&#125;</span>
&nbsp;
					<span style="color: #009900;">&#125;</span>
&nbsp;
				<span style="color: #009900;">&#125;</span>
			<span style="color: #009900;">&#125;</span>
		<span style="color: #009900;">&#125;</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://deleteaso.com/fix-textfields-jsfl/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Guy Watson&#8217;s FileSystem Extension</title>
		<link>http://deleteaso.com/guy-watsons-filesystem-extension/</link>
		<comments>http://deleteaso.com/guy-watsons-filesystem-extension/#comments</comments>
		<pubDate>Wed, 25 Jul 2007 12:53:14 +0000</pubDate>
		<dc:creator>julian</dc:creator>
				<category><![CDATA[Extensions]]></category>

		<guid isPermaLink="false">http://deleteaso.com/guy-watsons-filesystem-extension/</guid>
		<description><![CDATA[Even though Flash now comes with the FLfile object, Guy Watson&#8217;s FileSystem extension still has a handful of features that FLfile doesn&#8217;t have. I went looking for the api and couldn&#8217;t find it on his site anymore so I wanted to put it up here. If you don&#8217;t have the extension you can download it [...]]]></description>
			<content:encoded><![CDATA[<p>Even though Flash now comes with the FLfile object, <a href="http://www.flashguru.co.uk/beta-filesystem-jsapi-extension" target="_blank">Guy Watson&#8217;s FileSystem</a> extension still has a handful of features that FLfile doesn&#8217;t have. I went looking for the api and couldn&#8217;t find it on his site anymore so I wanted to put it up here. If you don&#8217;t have the extension you can download it <a href="http://www.flashguru.co.uk/beta-filesystem-jsapi-extension" target="_blank">here</a>.</p>
<p>Here is the list of methods. For now you&#8217;ll have to guess what the parameters are, but I&#8217;ll try and fill those in as I go.<br />
<span name="intelliTxt" id="intelliTxt"></p>
<li>FileSystem.version()</li>
<li>FileSystem.browseForFolder()</li>
<li>FileSystem.getFileSize()</li>
<li>FileSystem.getFolderSize()</li>
<li>FileSystem.createFolder()</li>
<li>FileSystem.folderExists()</li>
<li>FileSystem.renameFile()</li>
<li>FileSystem.renameFolder()</li>
<li>FileSystem.copyFile()</li>
<li>FileSystem.copyFolder()</li>
<li>FileSystem.deleteFile()</li>
<li>FileSystem.deleteFolder()</li>
<li>FileSystem.getFolderContents()</li>
<li>FileSystem.saveTextFile()</li>
<li>FileSystem.readTextFile()</li>
<li>FileSystem.setCurrentFolder()</li>
<li>FileSystem.executeApplication()</li>
<li>FileSystem.executeDocument()</li>
<li>FileSystem.readRegistryRaw()</li>
<li>FileSystem.readRegistryString()</li>
<li>FileSystem.writeRegistryString()</li>
<li>FileSystem.readRegistryInteger()</li>
<li>FileSystem.writeRegistyInteger()</li>
<p></span></p>
]]></content:encoded>
			<wfw:commentRss>http://deleteaso.com/guy-watsons-filesystem-extension/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snippets Panel v0.1</title>
		<link>http://deleteaso.com/snippets-panel-v01/</link>
		<comments>http://deleteaso.com/snippets-panel-v01/#comments</comments>
		<pubDate>Wed, 30 May 2007 16:23:04 +0000</pubDate>
		<dc:creator>julian</dc:creator>
				<category><![CDATA[Extensions]]></category>

		<guid isPermaLink="false">http://deleteaso.com/snippets-panel-v01/</guid>
		<description><![CDATA[Yesterday I was going through the list of new features in CS3 for the JSAPI and I found fl.clipCopyString(string). This has been a feature I have been waiting for since mx2004 came out. And more just because I wanted to create a Snippets Panel. So I spent some time yesterday putting together something pretty quick. [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I was going through the list of new features in CS3 for the JSAPI and I found fl.clipCopyString(string). This has been a feature I have been waiting for since mx2004 came out. And more just because I wanted to create a Snippets Panel. So I spent some time yesterday putting together something pretty quick. I haven&#8217;t tested it all that much and the UI is pretty simple right now. But I&#8217;d like to get some feedback first before going moving to far forward. The thing to keep in mind is that you can only copy the snippets to the clipboard and they don&#8217;t actually get pasted where your cursor has focus. But it still beats having to type out all those EventDispatcher mixins everytime.</p>
<p>Let me know what you think.</p>
<p><a href="http://deleteaso.com/downloads/extensions/snippetsv0.1.mxp">Snippets v 0.1Â </a></p>
]]></content:encoded>
			<wfw:commentRss>http://deleteaso.com/snippets-panel-v01/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Key Code Panel</title>
		<link>http://deleteaso.com/key-code-panel/</link>
		<comments>http://deleteaso.com/key-code-panel/#comments</comments>
		<pubDate>Tue, 13 Mar 2007 15:00:19 +0000</pubDate>
		<dc:creator>julian</dc:creator>
				<category><![CDATA[Extensions]]></category>

		<guid isPermaLink="false">http://deleteaso.com/key-code-panel/</guid>
		<description><![CDATA[I always find myself creating really simple blank flash files that trace out key codes that I need. So I figured it should finally be a panel. All you have to do is give the panel focus and it will display the key code for the key that has been pressed. Key Code Panel Download]]></description>
			<content:encoded><![CDATA[<p>I always find myself creating really simple blank flash files that trace out key codes that I need. So I figured it should finally be a panel. All you have to do is give the panel focus and it will display the key code for the key that has been pressed.</p>
<p><a href="http://deleteaso.com/downloads/extensions/keycodepanel.mxp" target="_blank">Key Code Panel Download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://deleteaso.com/key-code-panel/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Library Items Panel Updated</title>
		<link>http://deleteaso.com/library-items-panel-updated/</link>
		<comments>http://deleteaso.com/library-items-panel-updated/#comments</comments>
		<pubDate>Tue, 06 Mar 2007 00:38:23 +0000</pubDate>
		<dc:creator>julian</dc:creator>
				<category><![CDATA[Extensions]]></category>

		<guid isPermaLink="false">http://deleteaso.com/library-items-panel-updated/</guid>
		<description><![CDATA[Thanks to Jamie over at Big Spaceship I have updated my LibraryItems Panel. He found a little typo in the sound properties that was causing an error. It&#8217;s fixed now and can be downloaded here.]]></description>
			<content:encoded><![CDATA[<p>Thanks to <span class="post_author"><a href="http://labs.bigspaceship.com/blog/" target="_blank">Jamie over at Big Spaceship</a> I have updated my LibraryItems Panel. He found a little typo in the sound properties that was causing an error.  It&#8217;s fixed now and can be <a href="http://www.deleteaso.com/downloads/extensions/LibraryItems.mxp">downloaded here</a>. </span></p>
]]></content:encoded>
			<wfw:commentRss>http://deleteaso.com/library-items-panel-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

