<?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>awkward silence &#187; ria</title>
	<atom:link href="http://tom.wilcoxen.org/category/ria/feed/" rel="self" type="application/rss+xml" />
	<link>http://tom.wilcoxen.org</link>
	<description></description>
	<lastBuildDate>Fri, 19 Mar 2010 21:39:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Flex Builder 3, .swc Libraries and Linked Source</title>
		<link>http://tom.wilcoxen.org/2008/09/11/flex-builder-3-swc-libraries-and-linked-source/</link>
		<comments>http://tom.wilcoxen.org/2008/09/11/flex-builder-3-swc-libraries-and-linked-source/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 17:16:07 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Note to self]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[ria]]></category>
<category>flex</category><category>Note to self</category><category>ria</category>
		<guid isPermaLink="false">http://tom.wilcoxen.org/2008/09/11/flex-builder-3-swc-libraries-and-linked-source/</guid>
		<description><![CDATA[I&#8217;ve been using Mate for some time and liking it very much. I wanted to be able to use Flex Builder&#8217;s ability to navigate to and view the source of included types. With only having the downloaded .swc file in my /libs directory that wasn&#8217;t possible. It took me some time to sort it out, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using <a href="http://mate.asfusion.com/">Mate</a> for some time and liking it very much. I wanted to be able to use Flex Builder&#8217;s ability to navigate to and view the source of included types. With only having the downloaded .swc file in my /libs directory that wasn&#8217;t possible. It took me some time to sort it out, so here&#8217;s my recipe in case it helps anyone (and so I can remember next time). </p>
<p>This should also work for any project that you can download the source for, that just happened to be Mate for me. I&#8217;m using Flex Builder 3 &#8212; not sure what would be different if anything with FB2.</p>
<p>1. Download the source using the directions <a href="http://mate.asfusion.com/page/downloads">here</a></p>
<p>2. Create a <strong>Flex Library Project</strong> in Flex Builder, let&#8217;s call it &#8216;MateLib&#8217;</p>
<p>3. Import the source into the project, leaving out all the .svn directories, such that your folder structure looks like:</p>
<pre>
MateLib
   /bin
   /com
      /asfusion
         /mate
            /etc....
   manifest.xml
</pre>
<p>4. Right click the project in the FB Navigator view and select: Properties -> Flex Library Compiler. Set the <strong>Namespace URL:</strong> to &#8220;http://mate.asfusion.com/&#8221; and <strong>Mainifest file:</strong> to manifest.xml</p>
<p>5. Save and build the project.</p>
<p>6. In your project that uses the library, select Properties -> Flex Build Path and click Add SWC and navigate to the MateLib project -> /bin folder and select the MateLib.swc file there. </p>
<p>Now you can use the standard way to include Mate components in your mxml, with:<br />
<code><br />
   xmlns:mate="http://mate.asfusion.com/"<br />
</code></p>
<p>And you&#8217;ll be able to view the source code by command-clicking (control-click on Windows I think) a Mate component. You can also select the text, e.g. Dispatcher, and use the F3 key. And&#8230; the classes will also come up and be navigable with the Open Type, command-T, navigator.</p>
<a href="http://tom.wilcoxen.org/tags/flex" rel="tag">flex</a>, <a href="http://tom.wilcoxen.org/tags/note-to-self" rel="tag">Note to self</a>, <a href="http://tom.wilcoxen.org/tags/ria" rel="tag">ria</a>]]></content:encoded>
			<wfw:commentRss>http://tom.wilcoxen.org/2008/09/11/flex-builder-3-swc-libraries-and-linked-source/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FlexBuilder 3 Security Sandbox Explained</title>
		<link>http://tom.wilcoxen.org/2008/07/01/flexbuilder-3-security-sandbox-explained/</link>
		<comments>http://tom.wilcoxen.org/2008/07/01/flexbuilder-3-security-sandbox-explained/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 16:54:58 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[actionscript]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[ria]]></category>
<category>actionscript</category><category>flex</category><category>Note to self</category><category>ria</category>
		<guid isPermaLink="false">http://tom.wilcoxen.org/2008/07/01/flexbuilder-3-security-sandbox-explained/</guid>
		<description><![CDATA[I&#8217;ve been trying to load a local file with some dummy data and hitting a security warning. I was running out of FlexBuilder 3 and trying to read a local file, so wasn&#8217;t sure why I was getting a security error. I&#8217;d come across many references to adding a cross domain policy to a web [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been trying to load a local file with some dummy data and hitting a security warning. I was running out of FlexBuilder 3 and trying to read a local file, so wasn&#8217;t sure why I was getting a security error.</p>
<p>I&#8217;d come across many references to adding a cross domain policy to a web server, but this is the first full explanation of the security sandbox that made sense to me. Following this, I added:</p>
<p><code>-use-network=false</code></p>
<p>To the custom compiler line in the project preferences and all is well. Here&#8217;s the link with a great explanation:</p>
<p><a href="http://blogs.adobe.com/flexdoc/2008/06/the_security_sandbox_in_flex_b.html">http://blogs.adobe.com/flexdoc/2008/06/the_security_sandbox_in_flex_b.html</a></p>
<a href="http://tom.wilcoxen.org/tags/actionscript" rel="tag">actionscript</a>, <a href="http://tom.wilcoxen.org/tags/flex" rel="tag">flex</a>, <a href="http://tom.wilcoxen.org/tags/note-to-self" rel="tag">Note to self</a>, <a href="http://tom.wilcoxen.org/tags/ria" rel="tag">ria</a>]]></content:encoded>
			<wfw:commentRss>http://tom.wilcoxen.org/2008/07/01/flexbuilder-3-security-sandbox-explained/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flex Time</title>
		<link>http://tom.wilcoxen.org/2008/06/24/flex-time/</link>
		<comments>http://tom.wilcoxen.org/2008/06/24/flex-time/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 21:07:48 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Note to self]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[ria]]></category>
<category>design</category><category>design patterns</category><category>flex</category><category>Note to self</category><category>ria</category><category>Uncategorized</category>
		<guid isPermaLink="false">http://tom.wilcoxen.org/2008/06/24/flex-time/</guid>
		<description><![CDATA[It looks like I&#8217;ll be doing Flex RIA development, which I&#8217;m really looking forward to. Right now I need to tuck away a few links for further study&#8230; Cairngen &#8211; for generating the basics for a Cairngorm Flex app: http://code.google.com/p/cairngen/wiki/GettingStarted Paul Williams &#8211; a series of blog posts on presentation tier design patterns with an [...]]]></description>
			<content:encoded><![CDATA[<p>It looks like I&#8217;ll be doing Flex RIA development, which I&#8217;m really looking forward to. Right now I need to tuck away a few links for further study&#8230;</p>
<p>Cairngen &#8211; for generating the basics for a Cairngorm Flex app:<br />
<a href="http://code.google.com/p/cairngen/wiki/GettingStarted">http://code.google.com/p/cairngen/wiki/GettingStarted</a></p>
<p>Paul Williams &#8211; a series of blog posts on presentation tier design patterns with an eye to Flex:<br />
<a href="http://weblogs.macromedia.com/paulw/">http://weblogs.macromedia.com/paulw/</a></p>
<p>dpUint &#8211; Flex unit testing framework with async testing support baked-in:<br />
<a href="http://code.google.com/p/dpuint/wiki/Introduction">http://code.google.com/p/dpuint/wiki/Introduction</a></p>
<p>Prana &#8211; an IoC for Flex&#8230; useful with Cairngorm:<br />
<a href="http://www.herrodius.com/blog/64">http://www.herrodius.com/blog/64</a></p>
<p>Steven Weber very good introduction to Cairngorm:<br />
<a href="http://www.adobe.com/devnet/flex/articles/cairngorm_pt1.html">http://www.adobe.com/devnet/flex/articles/cairngorm_pt1.html</a></p>
<p>Bruce Eckel articles on Artima:<br />
<a href="http://www.artima.com/weblogs/viewpost.jsp?thread=212818">http://www.artima.com/weblogs/viewpost.jsp?thread=212818</a><br />
<a href="http://www.artima.com/weblogs/viewpost.jsp?thread=230610">http://www.artima.com/weblogs/viewpost.jsp?thread=230610</a></p>
<p>And Getting Started with Flex at Adobe:<br />
<a href="http://learn.adobe.com/wiki/display/Flex/Getting+Started">http://learn.adobe.com/wiki/display/Flex/Getting+Started</a></p>
<a href="http://tom.wilcoxen.org/tags/design" rel="tag">design</a>, <a href="http://tom.wilcoxen.org/tags/design_patterns" rel="tag">design patterns</a>, <a href="http://tom.wilcoxen.org/tags/flex" rel="tag">flex</a>, <a href="http://tom.wilcoxen.org/tags/note-to-self" rel="tag">Note to self</a>, <a href="http://tom.wilcoxen.org/tags/ria" rel="tag">ria</a>, <a href="http://tom.wilcoxen.org/tags/uncategorized" rel="tag">Uncategorized</a>]]></content:encoded>
			<wfw:commentRss>http://tom.wilcoxen.org/2008/06/24/flex-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.218 seconds -->
