<?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>Ryan Campbell</title>
	<atom:link href="http://www.ryancampbell.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ryancampbell.com</link>
	<description>Flex/Flash Developer Blog</description>
	<lastBuildDate>Thu, 10 Sep 2009 16:43:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Skinning MinimalComps with Degrafa</title>
		<link>http://www.ryancampbell.com/2009/09/10/skinning-minimalcomps-with-degrafa/</link>
		<comments>http://www.ryancampbell.com/2009/09/10/skinning-minimalcomps-with-degrafa/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 16:43:28 +0000</pubDate>
		<dc:creator>Ryan Campbell</dc:creator>
				<category><![CDATA[Degrafa]]></category>
		<category><![CDATA[MXML]]></category>
		<category><![CDATA[MinimalComps]]></category>

		<guid isPermaLink="false">http://www.ryancampbell.com/?p=43</guid>
		<description><![CDATA[Just a quick post to show how you can utilize Degrafa and MXML to skin the MinimalComps components. Currently this adds just over 50kb to your SWF but it's on on going effort to lower this and minimize the dependencies on Flex classes.
My skin extends from GeometryGroup which instead of adding another DisplayObject to the [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick post to show how you can utilize <a href="http://www.degrafa.com">Degrafa</a> and MXML to skin the <a href="http://code.google.com/p/minimalcomps/">MinimalComps</a> components. Currently this adds just over 50kb to your SWF but it's on on going effort to lower this and minimize the dependencies on Flex classes.</p>
<p>My skin extends from GeometryGroup which instead of adding another DisplayObject to the display list it simply draws directly on the component.</p>
<p>I really like the idea of using AS3 for your component behavior/logic and seperating your views/skins using MXML. This is something Flex 4 is trying to achieve with FXG and it would be cool to see other frameworks do the same with Degrafa.</p>
<p><a href="/flex/MinimalSkins/srcview/" target="_blank">View the source</a></p>
<p><iframe src="/flex/MinimalSkins/MinimalSkins.html" width="100%" height="100"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryancampbell.com/2009/09/10/skinning-minimalcomps-with-degrafa/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Using MXML without Flex (Example and Source)</title>
		<link>http://www.ryancampbell.com/2009/08/26/using-mxml-without-flex-example-and-source/</link>
		<comments>http://www.ryancampbell.com/2009/08/26/using-mxml-without-flex-example-and-source/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 19:47:54 +0000</pubDate>
		<dc:creator>Ryan Campbell</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[MXML]]></category>
		<category><![CDATA[MinimalComps]]></category>

		<guid isPermaLink="false">http://www.bobjim.com/2009/08/26/using-mxml-without-flex-example-and-source/</guid>
		<description><![CDATA[I made a few minor changes to the MinimalComps project from Keith Peters and got it playing nicely with MXML. The below application compiles to a tiny 23KB yet makes use of MXML and even data binding.
I added only 2 new extra classes (Container and Application). Container simply adds the ability to add child DisplayObjects [...]]]></description>
			<content:encoded><![CDATA[<p>I made a few minor changes to the <a href="http://code.google.com/p/minimalcomps/" title="MinimalComps" target="_blank">MinimalComps</a> project from <a href="http://www.bit-101.com/blog/" title="Keith Peters" target="_blank">Keith Peters</a> and got it playing nicely with MXML. The below application compiles to a tiny<strong> 23KB</strong> yet makes use of MXML and even data binding.</p>
<p>I added only 2 new extra classes (Container and Application). Container simply adds the ability to add child DisplayObjects via MXML. Application extends Container and handles configuring the stage.</p>
<p>The only changes I made to the existing MinimalComps classes was adding a few metadata tags and modified VBox and HBox to extend Container.</p>
<p><a href="/flex/MinimalComps/srcview/index.html" target="_blank">View</a> or <a href="/flex/MinimalComps/srcview/MinimalComps.zip" target="_blank">download</a> the full source code.</p>
<p><iframe src="/flex/MinimalComps/MinimalComps.html" height="150" width="100%"></iframe></p>
<p>Here's the source for the main mxml file:</p>
<p><iframe src="/flex/MinimalComps/srcview/source/MinimalComps.mxml.html" height="380" width="100%"></iframe></p>
<p>Note: This has nothing to do with the new framework we are building. I just wanted to show off how easy it is to use MXML without Flex.</p>
<p><a href="/flex/MinimalComps/srcview/index.html" target="_blank">View</a> or <a href="/flex/MinimalComps/srcview/MinimalComps.zip" target="_blank">download</a> the full source code.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryancampbell.com/2009/08/26/using-mxml-without-flex-example-and-source/feed/</wfw:commentRss>
		<slash:comments>42</slash:comments>
		</item>
		<item>
		<title>Here&#8217;s 5 3D Layouts for Flex 4</title>
		<link>http://www.ryancampbell.com/2009/06/16/heres-5-3d-layouts-for-flex-4/</link>
		<comments>http://www.ryancampbell.com/2009/06/16/heres-5-3d-layouts-for-flex-4/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 14:50:52 +0000</pubDate>
		<dc:creator>Ryan Campbell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.bobjim.com/2009/06/16/heres-5-3d-layouts-for-flex-4/</guid>
		<description><![CDATA[I spent some time converting the OpenFlux 3D layouts to Flex 4 last week and have attached the example with source code. This includes CoverFlow (horizontal and vertical), Carousel, Spiral and Time Machine. I also included one which was created when I screwed up the CoverFlow layout but I thought it looked cool so I [...]]]></description>
			<content:encoded><![CDATA[<p>I spent some time converting the OpenFlux 3D layouts to Flex 4 last week and have attached the <a href="/flex/Flex4Layouts/Flex4Layouts.html" target="_blank">example</a> with <a href="/flex/Flex4Layouts/srcview/index.html" target="_blank">source code</a>. This includes CoverFlow (horizontal and vertical), Carousel, Spiral and Time Machine. I also included one which was created when I screwed up the CoverFlow layout but I thought it looked cool so I hit Save As and named it AwesomeLayout.</p>
<p>Overall I was really happy with how quickly I could get these working with Flex 4. It wasn't quite as painful as I originally thought and I'll discuss the differences below.</p>
<p><a href="/flex/Flex4Layouts/Flex4Layouts.html" target="_blank">View the Example</a><br />
<a href="/flex/Flex4Layouts/srcview/index.html" target="_blank">View the Source Code</a></p>
<p><strong>ILayoutElement</strong></p>
<p>In Flex 4, UIComponent implements ILayoutElement which provides you a bunch of methods to manage the layout of each child. For 2D layouts you would use <em>element.setLayoutBoundsSize( width, height, postLayoutTransform )</em> to set the size and <em>element.setLayoutBoundsPosition( x, y, postLayoutTransform )</em> to set position.</p>
<p>OpenFlux instead allows you to set x, y, width, height, z, rotationX, rotationY, rotationZ directly to a token which is used to animate the child to its new position/size.</p>
<p><strong>Matrix3D</strong></p>
<p>With OpenFlux, you set the z, rotationX, rotationY, rotationZ properties directly. With Flex 4 you instead use <em>element.setLayoutMatrix3D( matrix, postLayoutTransform )</em>. Instead of passing in the above properties it instead expects an instance of Matrix3D. This was my first use of Matrix3D and Vector3D (FP10 classes) and had no idea what I was doing until I looked at the example <a href="http://opensource.adobe.com/svn/opensource/flex/sdk/trunk/development/eclipse/flex/flex4test/src/layouts/WheelLayout.as" target="_blank">Flex 4 WheelLayout</a></p>
<p>A common approach would be to first set the initial 3D coordinates of the child, next apply any rotation and third center the child in the container. Below is the Matrix3D code for AwesomeLayout:</p>
<p><em>var matrix:Matrix3D = new Matrix3D();<br />
matrix.appendTranslation( elementWidth * -( selectedIndex - i ), elementHeight / 2, 0 );<br />
matrix.appendRotation( Math.abs( selectedIndex - i ) * 2, Vector3D.Y_AXIS );<br />
matrix.appendTranslation( width / 2, height / 2, 0 ); // center element in container<br />
element.setLayoutMatrix3D( matrix, false );</em></p>
<p><strong>maintainProjectionCenter</strong></p>
<p>FP10 adds a perspectiveProjection property to the Transform class which works similar to a camera in Away3D. By default, the prespectiveProjection is set to the top left but for my layouts I need it to be the center of the container. This is easily done with the following code:</p>
<p><em>var pp:PerspectiveProjection = new PerspectiveProjection();<br />
pp.projectionCenter = new Point(container.width / 2, container.height / 2);<br />
container.transform.perspectiveProjection = pp;</em></p>
<p>Since wanting center projection is so common though, Flex 4 made this even easier by adding a maintainProjectionCenter flag to UIComponent. When the layout is attached to a container, I simply override the setter and set this property to true.</p>
<p><strong>layer</strong></p>
<p>Another pain in the butt with FP10 is that the z property has nothing to do with the z-index of the DisplayObject. What that means is even though the DisplayObject appears to be further away and smaller, it will still be in front of closer DisplayObjects unless you update it's position in the display list.</p>
<p>Flex 4 solves this by adding a layer property to UIComponent. For the List component for example, this allows you to specify a different display list index for the item renderer compared to where it is located in the data provider. You simply set the layer property for each element (based on its z property ideally) and if required call <em>container.invalidateLayering()</em></p>
<p>OpenFlux handles this automatically after the layout is done setting the position of each child.</p>
<p><strong>Animation?</strong></p>
<p>One question I'm hoping someone has a decent answer to is regarding animating the size/position of child elements. For example, if I switch layouts I want the children to be tweened to their new positions. This is easy to do with OpenFlux but I have no idea how to do it with Flex 4. I know Flex 3 introduced a dataChangeEffect but this seems to have disappeared with the Flex 4 List component.</p>
<p><strong>What next?</strong></p>
<p>So, I only implemented the very basics of the layout. Next steps would be to add support for measure, scrolling and virtualization. I've included a LayoutBase3D class which handles common 3D tasks. I'd love to see what layouts others come up with and think it would be cool to start a Flex 4 Layouts open source project.</p>
<p>Feel free to write any questions in the comments.</p>
<p><a href="/flex/Flex4Layouts/Flex4Layouts.html" target="_blank">View the Example</a><br />
<a href="/flex/Flex4Layouts/srcview/index.html" target="_blank">View the Source Code</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryancampbell.com/2009/06/16/heres-5-3d-layouts-for-flex-4/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>OpenFlux Independant From Flex</title>
		<link>http://www.ryancampbell.com/2009/03/11/openflux-independant-from-flex/</link>
		<comments>http://www.ryancampbell.com/2009/03/11/openflux-independant-from-flex/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 17:31:47 +0000</pubDate>
		<dc:creator>Ryan Campbell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.bobjim.com/2009/03/11/openflux-independant-from-flex/</guid>
		<description><![CDATA[Over the last month I've been working on getting OpenFlux independant from UIComponent and many of the other large Flex classes with a goal to create a much ligher framework.
OpenFlux Application (77KB)

Flex Application with OpenFlux Components (205KB)

I have two applications above that look exactly the same. The difference is one is a OpenFlux application with [...]]]></description>
			<content:encoded><![CDATA[<p>Over the last month I've been working on getting OpenFlux independant from UIComponent and many of the other large Flex classes with a goal to create a much ligher framework.</p>
<p><strong>OpenFlux Application (77KB)</strong></p>
<p><iframe src="/flex/PhoenixTest/PureFlux.html" height="200" width="100%"></iframe></p>
<p><strong>Flex Application with OpenFlux Components (205KB)</strong></p>
<p><iframe src="/flex/PhoenixTest/SomeFlux.html" height="200" width="100%"></iframe></p>
<p>I have two applications above that look exactly the same. The difference is one is a OpenFlux application with OpenFlux components and the other is a Flex application with OpenFlux components. Although the code is almost identical, the OpenFlux app compiles to 77kb and the Flex app compiles to 205kb. Before you think "oh great another framework" I'd like to point out the following:</p>
<p><strong>1. OpenFlux components can be used with or without Flex<br />
</strong><br />
OpenFlux components all extend a class (currently called PhoenixComponent) that implements IUIComponent allowing them to work with or without Flex. Likewise, you can use Flex classes and projects like Degrafa and Mate with pure OpenFlux applications.</p>
<p><strong>2. This is not a completely separate framework, just lighter weight implementations of Flex's interfaces</strong></p>
<p>We'll continue to use the parts of Flex that work well but replace the parts can be done better. Luckily the Flex team uses interfaces well allowing us to use our own implementations for almost every piece of the framework.</p>
<p><strong>3. MXML, CSS, Resource Bundles and Data Binding all still work with pure OpenFlux apps</strong></p>
<p>These 4 features of Flex make our lives as developers way easier and I wouldn't have even bothered continuing getting OpenFlux independant from Flex if it ment I'd have to build all my applications in pure AS3. Utilizing these features do add size to your compiled application but I think the benefits they provide make it well worth it.</p>
<p><strong>4. Flex is monolitic, OpenFlux is modular. </strong></p>
<p>My opinion is if your application is loaded over the internet it should be highest priority to keep the application size small and don't include any code that you aren't utilizing. For example, the List component in this application doesn't need drag n' drop support so that code isn't included.</p>
<p>Even if create a basic Flex application with just a List component that application's optimized compile size is 250kb. Actually, an OpenFlux application is even smaller then a Flex application that uses Runtime Shared Libraries. I think 77kb even is too large though and it's an on going effort to continue reducing the size of OpenFlux applications.</p>
<p><strong>So what's next?</strong></p>
<p>Our goal is to have an OpenFlux SDK you can use with Flex Builder and an OpenFlux.org website available in time for <a href="http://www.360conferences.com/360flex/" target="_blank">360|Flex Indianapolous</a>. I have a session called "OpenFlux and Flex 4" where I will discuss the differences between the two frameworks, give examples on when to use one over the other and how you can use them both together.</p>
<p>Over the last month of coding/experimenting we weren't even sure if our goals were possible. Now that we've been able to accomplish mainly what we hoped for we'll be focusing on resolving issues, documentation and examples.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryancampbell.com/2009/03/11/openflux-independant-from-flex/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>OpenFlux: Tree and TreeDataGrid Components (view source enabled)</title>
		<link>http://www.ryancampbell.com/2009/02/02/openflux-tree-and-treedatagrid-components-view-source-enabled/</link>
		<comments>http://www.ryancampbell.com/2009/02/02/openflux-tree-and-treedatagrid-components-view-source-enabled/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 14:11:22 +0000</pubDate>
		<dc:creator>Ryan Campbell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.bobjim.com/2009/02/02/openflux-tree-and-treedatagrid-components-view-source-enabled/</guid>
		<description><![CDATA[Ok, so after getting a working OpenFlux DataGrid component I decided the next obvious step is to try and build a TreeDataGrid component. Although there is still more work to be done, I spent a few hours last night and was able to get a Tree and TreeDataGrid component working. There are definitely still bugs [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, so after getting a working <a href="/2009/01/22/openflux-datagrid-component-with-view-source/" target="_blank">OpenFlux DataGrid component</a> I decided the next obvious step is to try and build a TreeDataGrid component. Although there is still more work to be done, I spent a few hours last night and was able to get a Tree and TreeDataGrid component working. There are definitely still bugs (don't even try sorting the DataGrid hint hint) but it's a great start.</p>
<p>The best part is 100% of the code from the Tree and DataGrid components were re-used for the TreeDataGrid. In fact, the TreeDataGrid isn't even a separate component, it's just a new view for the regular OpenFlux DataGrid.</p>
<p>I think this really shows off where OpenFlux's architecture shines. Moving the logic in to separate controllers allows you to easily mix and match functionality to build any component you desire quickly. If the Flex SDK was written in a similar way the AdvancedDataGrid wouldn't have had to be written from scratch.</p>
<p>Over the next couple weeks I plan on fixing the remaining issues and at that point I'll switch to blogging on how to use all this new functionality to build some really cool 3D components (OpenFlux/Plexiglass).</p>
<p>Feel free to <a href="/flex/TreeExample/srcview/index.html" target="_blank">view the source</a> and post any feedback you have in the comments.</p>
<p><iframe src="/flex/TreeExample/TreeExample.html" height="300" width="100%"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryancampbell.com/2009/02/02/openflux-tree-and-treedatagrid-components-view-source-enabled/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>OpenFlux: Custom Expanding DataGridRow (view source enabled)</title>
		<link>http://www.ryancampbell.com/2009/01/31/openflux-custom-expanding-datagridrow-view-source-enabled/</link>
		<comments>http://www.ryancampbell.com/2009/01/31/openflux-custom-expanding-datagridrow-view-source-enabled/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 18:29:25 +0000</pubDate>
		<dc:creator>Ryan Campbell</dc:creator>
				<category><![CDATA[DataGrid]]></category>
		<category><![CDATA[OpenFlux]]></category>

		<guid isPermaLink="false">http://www.bobjim.com/2009/01/31/openflux-custom-expanding-datagridrow-view-source-enabled/</guid>
		<description><![CDATA[The current project I'm on in the mockups shows a DataGrid component that requires the ability to expand the row height to show more details on the selected item. Although this sounds simple to do, the Flex DataGrid component is a beast and if this isn't something you've been tasked before you're probably scratching your [...]]]></description>
			<content:encoded><![CDATA[<p>The current project I'm on in the mockups shows a DataGrid component that requires the ability to expand the row height to show more details on the selected item. Although this sounds simple to do, the Flex DataGrid component is a beast and if this isn't something you've been tasked before you're probably scratching your head on how to get started.</p>
<p>After our conversation on different possible ways to approach this task, I wondered how easy this would be to do with the OpenFlux DataGrid. My solution is simply a custom view for the DataGridRow that expands the height based on mouse over/selection.</p>
<p>I've included an example below with <a href="/flex/ExpandableDataGridRow/srcview/index.html" target="_blank">view source enabled</a>.</p>
<p><iframe src="/flex/ExpandableDataGridRow/DataGridExample.html" height="220" width="100%"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryancampbell.com/2009/01/31/openflux-custom-expanding-datagridrow-view-source-enabled/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>OpenFlux DataGrid Component (with view source)</title>
		<link>http://www.ryancampbell.com/2009/01/22/openflux-datagrid-component-with-view-source/</link>
		<comments>http://www.ryancampbell.com/2009/01/22/openflux-datagrid-component-with-view-source/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 20:53:19 +0000</pubDate>
		<dc:creator>Ryan Campbell</dc:creator>
				<category><![CDATA[DataGrid]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[OpenFlux]]></category>

		<guid isPermaLink="false">http://www.bobjim.com/2009/01/22/openflux-datagrid-component-with-view-source/</guid>
		<description><![CDATA[I previously wouldn't have even thought of developing my own DataGrid component from scratch but with OpenFlux's help it's super easy (Or at least easy enough to want to attempt it). Over the last couple days I've spent my spare time developing an extremely flexible DataGrid component and if you view source, compared to the [...]]]></description>
			<content:encoded><![CDATA[<p>I previously wouldn't have even thought of developing my own DataGrid component from scratch but with <a href="http://openflux.googlecode.com">OpenFlux's</a> help it's super easy (Or at least easy enough to want to attempt it). Over the last couple days I've spent my spare time developing an extremely flexible DataGrid component and if you <a href="/flex/DataGridExample/srcview/index.html">view source</a>, compared to the standard Flex DataGrid, you'll see there isn't a lot of code behind it.</p>
<p>The component is actually a grouping of multiple sub components including DataGridColumn, DataGridHeader, DataGridRow, DataGridCell which all extend either List or ListItem giving instant selection and drag/drop functionality. You can easily hook up your own custom controllers and views to add any functionality you desire.</p>
<p>Be sure to play around with the example below and <a href="/flex/DataGridExample/srcview/index.html">view source</a> to see how it all works. My only note is I'm having some SVN issues so this isn't yet committed to the OpenFlux project.</p>
<p><iframe src="/flex/DataGridExample/DataGridExample.html" height="300" width="100%"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryancampbell.com/2009/01/22/openflux-datagrid-component-with-view-source/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>OpenFlux + Degrafa = FluxCharts</title>
		<link>http://www.ryancampbell.com/2008/09/17/openflux-degrafa-fluxcharts/</link>
		<comments>http://www.ryancampbell.com/2008/09/17/openflux-degrafa-fluxcharts/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 01:59:10 +0000</pubDate>
		<dc:creator>Ryan Campbell</dc:creator>
				<category><![CDATA[Degrafa]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[FluxCharts]]></category>
		<category><![CDATA[OpenFlux]]></category>

		<guid isPermaLink="false">http://www.bobjim.com/2008/09/17/openflux-degrafa-fluxcharts/</guid>
		<description><![CDATA[Last night I started playing around with the new GeometryRepeater/PropertyModifier classes in Degrafa and decided it would be fun to create an OpenFlux chart component. The code consists of a Chart model class (currently just has a data Array property) and 3 mxml views. You can change the view at runtime to a pie, line [...]]]></description>
			<content:encoded><![CDATA[<p>Last night I started playing around with the new GeometryRepeater/PropertyModifier classes in <a href="http://www.degrafa.com" title="Degrafa" target="_blank">Degrafa</a> and decided it would be fun to create an <a href="http://openflux.googlecode.com" title="OpenFlux" target="_blank">OpenFlux</a> chart component. The code consists of a Chart model class (currently just has a data Array property) and 3 mxml views. You can change the view at runtime to a pie, line or column chart.</p>
<p>The app is below with view source enabled. So far the component is really simple and doesn't even have a controller. I plan on developing it further but wanted to show it off at the early stage so you can see how simple it is to get started creating a custom OpenFlux component.</p>
<p>I will be posting updates as I add more functionality. Let me know any ideas you have for what you would like to see.</p>
<p><iframe src="/flex/FluxCharts/FluxCharts.html" height="400" width="100%"></iframe><br />
<a href="/flex/FluxCharts/srcview/index.html" target="_blank">View Source Code</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryancampbell.com/2008/09/17/openflux-degrafa-fluxcharts/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Customizing the OpenFlux ScrollBar</title>
		<link>http://www.ryancampbell.com/2008/09/10/customizing-the-openflux-scrollbar/</link>
		<comments>http://www.ryancampbell.com/2008/09/10/customizing-the-openflux-scrollbar/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 19:27:38 +0000</pubDate>
		<dc:creator>Ryan Campbell</dc:creator>
				<category><![CDATA[360Flex]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[OpenFlux]]></category>

		<guid isPermaLink="false">http://www.bobjim.com/2008/09/10/customizing-the-openflux-scrollbar/</guid>
		<description><![CDATA[At the 360&#124;Flex Day 1 Keynote, Mark Anders presented on Flex 4, Thermo and Flash Player 10 (video here). One of his demos was a custom scroll bar that was easily built with Flex 4/Thermo, but complicated with Flex 3. I've created a similar scroll bar using OpenFlux below with view source enabled. You'll be [...]]]></description>
			<content:encoded><![CDATA[<p>At the 360|Flex Day 1 Keynote, <a href="http://www.andersblog.com/" title="Mark Anders" target="_blank">Mark Anders</a> presented on Flex 4, Thermo and Flash Player 10 (<a href="http://link.brightcove.com/services/player/bcpid1733261879?bctid=1741161343" title="video here" target="_blank">video here</a>). One of his demos was a custom scroll bar that was easily built with Flex 4/Thermo, but complicated with Flex 3. I've created a similar scroll bar using <a href="http://openflux.googlecode.com" title="OpenFlux" target="_blank">OpenFlux</a> below with view source enabled. You'll be pleased to see how little code is involved. Making use of <a href="http://openflux.googlecode.com" target="_blank" title="OpenFlux">OpenFlux</a>+<a href="http://www.degrafa.com" title="Degrafa" target="_blank">Degrafa</a> all customizations were done in MXML with not a drop of AS3 code required.</p>
<p><iframe src="/flex/ScrollBarExample/ScrollBarExample.html" height="130" width="100%"></iframe></p>
<p><a href="/flex/ScrollBarExample/srcview/index.html" target="_blank">View Source Code</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryancampbell.com/2008/09/10/customizing-the-openflux-scrollbar/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Plexiglass: 3D Components Made Easy at 360&#124;Flex</title>
		<link>http://www.ryancampbell.com/2008/08/13/plexiglass-3d-components-made-easy-at-360flex/</link>
		<comments>http://www.ryancampbell.com/2008/08/13/plexiglass-3d-components-made-easy-at-360flex/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 19:21:34 +0000</pubDate>
		<dc:creator>Ryan Campbell</dc:creator>
				<category><![CDATA[360Flex]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[OpenFlux]]></category>
		<category><![CDATA[PlexiGlass]]></category>

		<guid isPermaLink="false">http://www.bobjim.com/2008/08/13/plexiglass-3d-components-made-easy-at-360flex/</guid>
		<description><![CDATA[In the time since 360&#124;Flex Atlanta, Ben and I have made a lot of progress on OpenFlux. The majority of my focus has been on what's called Plexiglass. It consists of an alternate view class, 3D layouts and cameras allowing you to create 3D components with as little as a couple lines of mxml or [...]]]></description>
			<content:encoded><![CDATA[<p>In the time since 360|Flex Atlanta, Ben and I have made a lot of progress on OpenFlux. The majority of my focus has been on what's called Plexiglass. It consists of an alternate view class, 3D layouts and cameras allowing you to create 3D components with as little as a couple lines of mxml or css.</p>
<p>We've still got a ways to go, OpenFlux is still in alpha release, but I'm really happy with what we've done so far and I can't wait to show it off. My session at 360|Flex will give you a great idea on what's currently possible, how to get started and future plans. Not to mention some sweet demos with full source code provided.</p>
<p>I'll also be looking to the crowd to drum up discussion on where to go next with the project. Although OpenFlux has been quoted as "Flex 4 Now", Plexiglass is definitely beyond the scope of the Flex 4 SDK. We've got a pretty solid core, I've experimented with Flex 4 compatibility and I think with the communities help this project can go a long way.</p>
<p>Below is a quick example (took 5 minutes) of a regular OpenFlux List component using the FlowLayout and an OpenFlux List using Plexiglass with the SpiralLayout. You can see by the source code, Plexiglass is really easy to get started with.</p>
<p>If you are interested in learning more come check out my session on Monday afternoon. On Sunday there is also free training on OpenFlux with Ben Stucki and I'll also be there to show you how to build a 3D component (e-mail <a href="mailto:info@360flex.com">info@360flex.com</a> to RSVP).</p>
<p>Lastly: This will be my third time going to 360|Flex. The previous 2 (Seattle, Atlanta) I had a blast, learnt a lot, meet a bunch of great people and it sounds like this one is going to be even better. I look forward to seeing you all there and if you see me around please come say hi.</p>
<p><iframe src="/PlexiExample/PlexiExample.html" height="300" width="100%"></iframe></p>
<p><iframe src="/PlexiExample/srcview/source/PlexiExample.mxml.html" height="300" width="100%"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryancampbell.com/2008/08/13/plexiglass-3d-components-made-easy-at-360flex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
