<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Riverdale Station</title>
	<atom:link href="http://riverdalestation.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://riverdalestation.net</link>
	<description>episodes recorded while building the InterWebs</description>
	<lastBuildDate>Thu, 10 Mar 2011 21:15:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='riverdalestation.net' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Riverdale Station</title>
		<link>http://riverdalestation.net</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://riverdalestation.net/osd.xml" title="Riverdale Station" />
	<atom:link rel='hub' href='http://riverdalestation.net/?pushpress=hub'/>
		<item>
		<title>Installing the Ganymede Eclipse 3.4 Subversive Connector on Mac OS X</title>
		<link>http://riverdalestation.net/2010/06/15/installing-the-ganymede-eclipse-3-4-subversive-connector-on-mac-os-x/</link>
		<comments>http://riverdalestation.net/2010/06/15/installing-the-ganymede-eclipse-3-4-subversive-connector-on-mac-os-x/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 04:16:20 +0000</pubDate>
		<dc:creator>Pauli Price</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://marfarma.wordpress.com/2010/06/15/installing-the-ganymede-eclipse-3-4-subversive-connector-on-mac-os-x/</guid>
		<description><![CDATA[At issue is this. For a particular application with which I will be developing, I need to have subversion support from within Eclipse. The version of Eclipse that I had installed is Ganymede, or 3.4. Following the instructions on several tutorials, I use the Eclipse built-in installer and add the Subversive plugin. Then I add [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=riverdalestation.net&amp;blog=9929054&amp;post=36&amp;subd=marfarma&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>At issue is this.  For a particular application with which I will be developing, I need to have subversion support from within Eclipse.  </p>
<p>The version of Eclipse that I had installed is Ganymede, or 3.4.  Following the instructions on several tutorials, I use the Eclipse built-in installer and add the Subversive plugin.  Then I add a connector.  Then I attempt to access an SVN repository.  Except it doesn&#8217;t work.  Seems the connector won&#8217;t load.  </p>
<p>&#8220;Selected SVN connector library is not available or cannot be loaded.  &#8230;&#8221;</p>
<p>In this instance, Google was not my friend &#8212; at least not for a long long time.  I put this on my blog in the hopes that Google will be kinder to you, should you find yourself in the same situation.</p>
<p>Ultimately I built Subversion from scratch &#8212; including the javalh library.  I downloaded the lastest source from here: <a href="http://subversion.tigris.org/downloads/subversion-1.6.11.tar.bz2">subversion-1.6.11</a> unpacked and built it.</p>
<p>cd subversion-1.6.11<br />
./configure<br />
make<br />
sudo make install</p>
<p>I tried eclipse again, still no good.  The error message didn&#8217;t even change.  Googled around some more, investigating the javahl connector, trying to determine it&#8217;s location, and why Eclipse couldn&#8217;t find it.  Eventually I realized that javahl had a separate make target, I made and installed it.</p>
<p>cd subversion-1.6.11<br />
make javahl<br />
sudo make javahl-install</p>
<p>At this point I have the following installed:</p>
<p>/usr/local/lib/libsvnjavahl-1.0.0.0.dylib<br />
/usr/local/lib/libsvnjavahl-1.0.dylib<br />
/usr/local/lib/libsvnjavahl-1.a<br />
/usr/local/lib/libsvnjavahl-1.dylib<br />
/usr/local/lib/libsvnjavahl-1.la<br />
/usr/local/lib/svn-javahl<br />
/usr/local/lib/svn-javahl/svn-javahl.jar</p>
<p>So, I try Eclipse again, setting my svn connector to native javahl.  Still no good.  Still the same error message.</p>
<p>I update my DYLD_LIBRARY_PATH to include /usr/local/lib and my PATH to include /usr/local/lib/svy-javahl/  (it already includes /usr/local/lib )  Restart Eclipse, and &#8230;. still no good.</p>
<p>OK &#8212; now I&#8217;m really burning.  There has got to be a solution to this.  I hit StackOverflow &#8212; and find paydirt with  <a href="http://stackoverflow.com/questions/139055/subversive-connectors-not-working-with-newest-ganymede-update">this question,</a> where they refer to <strong>three</strong> connectors: the <strong>base connector</strong> and <strong>both</strong> the <strong>SVNKit</strong> and <strong>JavaHL</strong> connectors.  They also specify an authoritative update-site to get them from, <a href="http://www.polarion.org/projects/subversive/download/eclipse/2.0/update-site/">subversive update-site/</a></p>
<p>But I didn&#8217;t really figure it out until I hit this post: <a href="http://osgi.mjahn.net/2008/08/27/getting-svn-running-under-eclipse-34-ganymede/">getting svn running under eclipse 34 ganymede/</a> where I read: </p>
<blockquote><p>You’ll find a list mit all available connectors. You certainly can install all of them and try them out, one by one, which fits best for your environment. For me however, the <strong>“Native JavaHL 1.4.5 connector” together with the “SVNKit 1.1.7″ connector worked.</strong></p></blockquote>
<p> (emphasis added)</p>
<p>Hoping anew, I uninstalled previously installed svn connectors, toggled the now deprecated subversive update-site link &#8216;off&#8217; in manage sites pane, and then restarted Eclipse.  Then I added the now-authoritative update-site, selected the three connectors, the base connector, the 1.6 javahl connector, and the SVNKit 1.3.2 connector, and installed them.  I hit install, and then restarted Eclipse when it finished.</p>
<p>It worked!  </p>
<p>Checking Preferences | Team | SVN | connector panel, I see that the active connector is <strong>SVNKit 1.3.2 r6267 (for SVN 1.6.6, all platforms)</strong>, and when attempting to access a repository, I am able to without error.</p>
<p>At this point I can&#8217;t tell you if building the latest (?) version of Subversion helped the situation or not.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/marfarma.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/marfarma.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/marfarma.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/marfarma.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/marfarma.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/marfarma.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/marfarma.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/marfarma.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/marfarma.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/marfarma.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/marfarma.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/marfarma.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/marfarma.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/marfarma.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=riverdalestation.net&amp;blog=9929054&amp;post=36&amp;subd=marfarma&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://riverdalestation.net/2010/06/15/installing-the-ganymede-eclipse-3-4-subversive-connector-on-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3970ddf2027b9b83969a233e2b389a84?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">marfarma</media:title>
		</media:content>
	</item>
		<item>
		<title>Drilling Down on an Axiis BubbleChart &#8211; a Tutorial</title>
		<link>http://riverdalestation.net/2009/10/26/drilling-down-on-an-axiis-bubblechart-a-tutorial/</link>
		<comments>http://riverdalestation.net/2009/10/26/drilling-down-on-an-axiis-bubblechart-a-tutorial/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 23:42:55 +0000</pubDate>
		<dc:creator>Pauli Price</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://riverdalestation.net/?p=22</guid>
		<description><![CDATA[The Axiis Data Visualization library comes complete with an attractive sample bubble chart, which met my needs exactly &#8211; except that I needed drill-down capability. In short, my application had to show drill-down data as new bubbles the color of the selected bubble. Double-clicking a bubble would select it and invoke the drill-down, a second [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=riverdalestation.net&amp;blog=9929054&amp;post=22&amp;subd=marfarma&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The Axiis Data Visualization library comes complete with an attractive sample bubble chart, which met my needs exactly &#8211; except that I needed drill-down capability.  In short, my application had to show drill-down data as new bubbles the color of the selected bubble.  Double-clicking a bubble would select it and invoke the drill-down, a second double-click, on any bubble, would dismiss the drill-down.</p>
<p>In the interest of helping you over the hurdle faster, in case you have similar needs, I&#8217;m providing this brief tutorial.</p>
<h2>First enable double-click event handling.</h2>
<p>BaseLayout comes with support for double-click events baked in, passing a custom LayoutItemEvent event.  The event includes the current AxiisSprite that generated the event.  The AxiisSprite has a data property, which contains the data with which it was rendered.  So, implementing double-click handling was as simple as adding a listener, and a handler.</p>
<pre>    public function init():void
    {
		dataProvider=loadData();
		plotGroup.addEventListener("itemDoubleClick",onItemDoubleClick);
    }

    public function onItemDoubleClick(e:LayoutItemEvent):void
    {
        var data:Object = e.item.data;

	    {... do stuff ...}

	    dc.invalidateDisplayList(); // required to update the chart display
    }
</pre>
<p>.</p>
<h2>Next Overlay the Charts.</h2>
<p>Displaying the drill-down data as additional bubbles on the same chart is straight forward.  A dive into the source (src/DataCanvas.as) provides the following bit of intelligence.</p>
<pre>     /**
    * An Array of ILayouts that this DataCanvas should render. Layouts
    * appearing later in the array will render on top of earlier layouts.
    */
    public var layouts:Array;
</pre>
<p>.</p>
<p>This means is that if you want two PlotGroup charts to overlay one another all you need to do is stack them in the same DataCanvas.  The second chart has its own data provider, and its visible property set to false, and so my canvas looks like the following (code elements not directly related, such as axis, have been trimmed for clarity).</p>
<pre>    	&lt;axiis:DataCanvas top="100"
	bottom="120"
	width="{this.width*.8}"
	id="dc"
	verticalCenter="0"
	horizontalCenter="0"
	showDataTips="true"&gt;

	&lt;!-- Layouts --&gt;
	&lt;axiis:layouts&gt;
		&lt;axiis:PlotGroup id="plotGroup"
			dataProvider="{dataProvider}"
			verticalScale="{vScale}"
			horizontalScale="{hScale}"
			radiusScale="{rScale}"
			verticalField="aggregates.business_value_avg"
			horizontalField="aggregates.complexity_avg"
			radiusField="aggregates.weight_avg"
			plotFill="{plotFill}"
			markerGeometry="{marker}"
			height="{dc.height-15}"
			width="{dc.width-15}"
			dataTipLabelFunction="{dataTipFunction}"
			showDataTips="true"
			showMarker="false"
			x="15"&gt;
		&lt;/axiis:PlotGroup&gt;		

		&lt;axiis:PlotGroup id="drilldownPlotGroup"
			dataProvider="{dataProvider2}"
			verticalScale="{vScale}"
			horizontalScale="{hScale}"
			radiusScale="{rScale}"
			verticalField="aggregates.business_value_avg"
			horizontalField="aggregates.complexity_avg"
			radiusField="aggregates.weight_avg"
			plotFill="{drilldownPlotFill}"
			markerGeometry="{marker}"
			visible="false"
			height="{dc.height-15}"
			width="{dc.width-15}"
			dataTipLabelFunction="{dataTipFunction}"
			showDataTips="true"
			showMarker="false"
			x="15"&gt;
		&lt;/axiis:PlotGroup&gt;

	&lt;/axiis:layouts&gt;

&lt;/axiis:DataCanvas&gt;
</pre>
<p>.</p>
<h2>Update Data and Toggle Visible Property.</h2>
<p>Now we need to have our double-click handler fill the drill-down data provider with the appropriate details and update the visible property.  A second double-click toggles the visible property back off.  The handler now looks like this:</p>
<pre>        public function onItemDoubleClick(e:LayoutItemEvent):void {

        var data:Object = e.item.data;

	    if (drilldownPlotGroup.visible)
		    drilldownPlotGroup.visible = false;
	    else
	    {
		    drilldownDataProvider=loadData(data);
		    drilldownPlotGroup.visible = true;
	    }

        dc.invalidateDisplayList();

    }
</pre>
<p>.</p>
<h2>Fix the Color of the Drill-Down Bubble.</h2>
<p>The final requirement is to set the bubble colors for the drill-down chart to the color of the selected bubble.  Ah, but here&#8217;s where it gets a bit hairy.  The Axiis library, as delivered, doesn&#8217;t hold the geometry information used for rendering in the AxiisSprites &#8212; to set the color in the drill-down chart, we need the RadialGradientFill data that was used to render the selected bubble.  To get it, I modified the function that stored the data that is copied into the AxiisSprite.  The function in question is this one, located in src/org/axiis/core/BaseLayout.as</p>
<pre>   /**
    * The callback method called by the referenceRepeater before it applies
    * the PropertyModifiers on each iteration. This method updates the
    * currentIndex, currentDatum, currentValue, and currentLabel
    * properties.  It is recommended that subclasses override this method
    * to perform any custom data-driven computations that affect the
    * drawingGeometries.
    */
    protected function preIteration():void
    {
	    _currentIndex = referenceRepeater.currentIteration;
	    _currentDatum = dataItems[_currentIndex];
	    if (_currentDatum) {
		    _currentValue= getProperty(_currentDatum,dataField);
		    _currentLabel = getProperty(_currentDatum,labelField);
	    }
	    else {
		    _currentValue=null;
		    _currentLabel=null;
	    }
    }
</pre>
<p>.</p>
<p>As suggested, we should override this function in a subclass.  Fortunately the PlotGroup.mxml is a subclass of BaseLayout, so we can change the access of the function to public add the override function, as follows:</p>
<pre>    override public function preIteration():void
    {
	    super.preIteration();
	    _currentDatum.fill = plotFill;
    }
</pre>
<p>.</p>
<p>However, this does not provide the expected results.  The plotFill property of the PlotGroup layout is bound, and assigning it this way just transfers the binding.  What we need is to copy the current value of the RadialGradientFill property into a new object, and add that to the Sprite&#8217;s data.</p>
<pre>    override public function preIteration():void
    {
	    super.preIteration();
	    var rgf:RadialGradientFill = new RadialGradientFill();

	    for each (var gs:GradientStop in (plotFill as RadialGradientFill).gradientStops)
	    {
	        var gstop:GradientStop = new GradientStop(gs.color,gs.alpha, gs.ratio);
	        rgf.gradientStops.push(gstop);
	    } 

	    _currentDatum.fill = rgf;
    }
</pre>
<p>.</p>
<h2>Final Pass on the Double-Click Handler.</h2>
<p>Now we can update our double-click handler to grab the current Sprite&#8217;s RadialGradientFill, so it can display the drill-down bubbles with the same colors.  Finally our callback looks like this:</p>
<pre>

   public function onItemDoubleClick(e:LayoutItemEvent):void {

         var data:Object = e.item.data;

         if (drilldownPlotGroup.visible)
              drilldownPlotGroup.visible = false;
         else
         {
              drilldownPlotGroup.visible = true;
              drilldownDataProvider=loadData(data);
              drilldownPlotGroup.plotFill = e.item.data["fill"];
         }
         dc.invalidateDisplayList();
    }
</pre>
<p>.</p>
<p>And we&#8217;re done.</p>
<p>I don&#8217;t have code that you can grab and build, as the sample data I&#8217;m working with can&#8217;t be released, and I don&#8217;t have time right now, to mock up data that can be shared.  Let me know if you need working code in the comments, and I&#8217;ll see what I can do.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/marfarma.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/marfarma.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/marfarma.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/marfarma.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/marfarma.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/marfarma.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/marfarma.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/marfarma.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/marfarma.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/marfarma.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/marfarma.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/marfarma.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/marfarma.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/marfarma.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=riverdalestation.net&amp;blog=9929054&amp;post=22&amp;subd=marfarma&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://riverdalestation.net/2009/10/26/drilling-down-on-an-axiis-bubblechart-a-tutorial/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3970ddf2027b9b83969a233e2b389a84?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">marfarma</media:title>
		</media:content>
	</item>
		<item>
		<title>Workaround When Using Degrafa Within a Flex Library Project</title>
		<link>http://riverdalestation.net/2009/10/14/degrafa-flex-library-project-workaround/</link>
		<comments>http://riverdalestation.net/2009/10/14/degrafa-flex-library-project-workaround/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 04:02:56 +0000</pubDate>
		<dc:creator>Pauli Price</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Axiis]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex Builder 3]]></category>
		<category><![CDATA[Workaround]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[When using DegrafaLibrary.swc within a “Flex Library Project” rather than a regular “Flex Project,” as the Axiis components do,  a Flex Builder 3 bug prevented the compile.  Here's the workaround.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=riverdalestation.net&amp;blog=9929054&amp;post=1&amp;subd=marfarma&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I needed to build my own version of the excellent <a title="http://www.axiis.org/" href="http://www.axiis.org/">Axiis Data Visualization Component Library</a>.  However, I ran into a little problem.  It wouldn&#8217;t compile.  Now, as I trusted its authors, and had actually been using a pre-compiled swc, I wouldn&#8217;t accept that the problem was in the code.  I spent a long and frustrating time with Google before I uncovered the solution &#8212; which I&#8217;ll document for you here.</p>
<p>But first, the problem:</p>
<p>When using DegrafaLibrary.swc within a “Flex Library Project” rather than a regular “Flex Project,” as the Axiis components do,  the following code would not compile:</p>
<blockquote>
<div>
<pre style="font-family:monospace;">&lt;degrafa:GeometryGroup
 xmlns:mx=”http://www.adobe.com/2006/mxml”
 xmlns:degrafa=”http://www.degrafa.com/2007″
 xmlns:geometry=”com.degrafa.geometry.*”&gt;
</pre>
</div>
</blockquote>
<p>.</p>
<p>I kept getting a “Could not resolve &lt;degrafa:GeometryGroup&gt; to a component implementation.” error.</p>
<p>Apparently a variant of this bug: <a rel="nofollow" href="https://bugs.adobe.com/jira/browse/SDK-21156">https://bugs.adobe.com/jira/browse/SDK-21156</a> — “Library Project namespaces should be appended by default” exists in a 3.4.1 sdk and the Eclipse plugin of Flex Builder 3 (Mac OS X) environment.</p>
<p>Explicitly including the Degrafa library in a project specific flex-config.xml file fixed the problem.   I followed the process outlined on this<a title="Flex-config.xml project level override" href="http://blog.flexexamples.com/2008/12/21/using-a-custom-flex-configxml-file-in-flex-builder-3/"> Flex Examples Post.</a></p>
<p>Here is the contents of the config.xml file, which I placed in the src folder of the project.  (Note that I had to traverse up a level to reference the DegrafaLibrary.swc file.  If I had placed the config.xml file in the project root, I wouldn&#8217;t have needed to.  Next time.)</p>
<blockquote>
<pre style="padding-left:30px;">&lt;?xml version="1.0"?&gt;

&lt;flex-config&gt;
    &lt;compiler&gt;      
       &lt;include-libraries&gt;
          &lt;library&gt;../libs/DegrafaLibrary.swc&lt;/library&gt;
       &lt;/include-libraries&gt;        
    &lt;/compiler&gt;         
&lt;/flex-config&gt;</pre>
</blockquote>
<p>&nbsp;</p>
<p>.</p>
<p>And here&#8217;s how to add it to the project build:</p>
<div id="attachment_13" class="wp-caption aligncenter" style="width: 510px"><img class="size-full wp-image-13" title="Flex Library Compiler Properties" src="http://marfarma.files.wordpress.com/2009/10/flexlibrarycompilerproperties.jpg?w=600" alt="Add project specific flex-config.xml overrides to Library Project"   /><p class="wp-caption-text">Add project specific flex-config.xml overrides to Library Project</p></div>
<p>The compiler arguments line reads:</p>
<blockquote><p>-load-config+=/Users/pauliprice/Documents/workspace/axiis_lib/src/config.xml</p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/marfarma.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/marfarma.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/marfarma.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/marfarma.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/marfarma.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/marfarma.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/marfarma.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/marfarma.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/marfarma.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/marfarma.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/marfarma.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/marfarma.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/marfarma.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/marfarma.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=riverdalestation.net&amp;blog=9929054&amp;post=1&amp;subd=marfarma&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://riverdalestation.net/2009/10/14/degrafa-flex-library-project-workaround/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3970ddf2027b9b83969a233e2b389a84?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">marfarma</media:title>
		</media:content>

		<media:content url="http://marfarma.files.wordpress.com/2009/10/flexlibrarycompilerproperties.jpg" medium="image">
			<media:title type="html">Flex Library Compiler Properties</media:title>
		</media:content>
	</item>
	</channel>
</rss>
