<?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 &#187; OpenFlux</title>
	<atom:link href="http://www.ryancampbell.com/category/openflux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ryancampbell.com</link>
	<description>Flex/Flash Developer Blog</description>
	<lastBuildDate>Fri, 30 Jul 2010 03:46:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<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>
		<item>
		<title>Updated: PlexiGlass (OpenFlux 3D) Example</title>
		<link>http://www.ryancampbell.com/2008/04/04/updated-plexiglass-openflux-3d-example/</link>
		<comments>http://www.ryancampbell.com/2008/04/04/updated-plexiglass-openflux-3d-example/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 04:20:49 +0000</pubDate>
		<dc:creator>Ryan Campbell</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[OpenFlux]]></category>
		<category><![CDATA[PlexiGlass]]></category>

		<guid isPermaLink="false">http://www.bobjim.com/2008/04/04/updated-plexiglass-openflux-3d-example/</guid>
		<description><![CDATA[Since my previous entry I've made some major speed improvements, added back in the 52 cards and added 2 new 3d layouts similar to the ones in Pavan Podila's Element Flow. We've still got some work ahead of us before this goes public but I definitely can't wait to see OpenFlux get used and see [...]]]></description>
			<content:encoded><![CDATA[<p>Since <a href="http://www.bobjim.com/2008/03/31/plexiglass-openflux-3d-example/">my previous entry</a> I've made some major speed improvements, added back in the 52 cards and added 2 new 3d layouts similar to the ones in <a href="http://blog.pixelingene.com/?p=20">Pavan Podila's Element Flow</a>.</p>
<p>We've still got some work ahead of us before this goes public but I definitely can't wait to see OpenFlux get used and see what new 3D layouts others contribute.</p>
<p>As we get closer to release I'll be posting more examples and howtos on getting started with OpenFlux.</p>
<p align="center"><strong>Click the image below to try out the example.</strong></p>
<p align="center"> <a href="http://www.bobjim.com/PlexiExamples/PlexiExamples.html" target="_blank"><img src="http://www.ryancampbell.com/wp-content/uploads/2008/03/picture-2.png" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryancampbell.com/2008/04/04/updated-plexiglass-openflux-3d-example/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>PlexiGlass (OpenFlux 3D) Example</title>
		<link>http://www.ryancampbell.com/2008/03/31/plexiglass-openflux-3d-example/</link>
		<comments>http://www.ryancampbell.com/2008/03/31/plexiglass-openflux-3d-example/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 17:52:00 +0000</pubDate>
		<dc:creator>Ryan Campbell</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[OpenFlux]]></category>
		<category><![CDATA[PlexiGlass]]></category>

		<guid isPermaLink="false">http://www.bobjim.com/2008/03/31/plexiglass-openflux-3d-example/</guid>
		<description><![CDATA[I've ported over Doug McCune's CoverFlow component as 3D layouts in OpenFlux. You can switch between horizontal, vertical and carousel layout in the same List component along with a few other adjustable properties. It's highly likely there are a few bugs and I had to limit it to 20 cards (52 cards was crazy slow) [...]]]></description>
			<content:encoded><![CDATA[<p>I've ported over <a href="http://dougmccune.com/blog/2007/11/19/flex-coverflow-performance-improvement-flex-carousel-component-and-vertical-coverflow/">Doug McCune's CoverFlow</a> component as 3D layouts in <a href="http://openflux.googlecode.com">OpenFlux</a>. You can switch between horizontal, vertical and carousel layout in the same List component along with a few other adjustable properties. It's highly likely there are a few bugs and I had to limit it to 20 cards (52 cards was crazy slow) but this should give you a great idea of where OpenFlux is going.</p>
<p>A regular OpenFlux layout class manages the the x/y positions of the item renderers. PlexiGlass layout classes goes a step further and manage z position, x/y rotations and the camera.</p>
<p>We've still got some cleaning up to do but the code for this example will be included once PlexiGlass goes public. Click the image below to try out the example.</p>
<p style="text-align: center"> <a href="http://www.bobjim.com/PlexiExamples/PlexiExamples.html" target="_blank"><img src="http://www.ryancampbell.com/wp-content/uploads/2008/03/picture-2.png" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryancampbell.com/2008/03/31/plexiglass-openflux-3d-example/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>OpenFlux Example: Deck of Cards</title>
		<link>http://www.ryancampbell.com/2008/03/12/openflux-example-deck-of-cards/</link>
		<comments>http://www.ryancampbell.com/2008/03/12/openflux-example-deck-of-cards/#comments</comments>
		<pubDate>Wed, 12 Mar 2008 18:24:59 +0000</pubDate>
		<dc:creator>Ryan Campbell</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[OpenFlux]]></category>

		<guid isPermaLink="false">http://www.bobjim.com/2008/03/12/openflux-example-deck-of-cards/</guid>
		<description><![CDATA[By now I'm sure a lot of you have heard about Ben Stucki's latest project called OpenFlux. If not, check out the blog entry Ben wrote introducing it or listen to the latest The Flex Show episode discussing it. I'm really excited for OpenFlux, have been contributing to the project quite a bit and I'm [...]]]></description>
			<content:encoded><![CDATA[<p>By now I'm sure a lot of you have heard about <a href="http://blog.benstucki.net">Ben Stucki</a>'s latest project called <a href="http://openflux.googlecode.com">OpenFlux</a>. If not, check out the <a href="http://blog.benstucki.net/?p=47">blog entry Ben wrote</a> introducing it or listen to the latest <a href="http://www.theflexshow.com/blog/index.cfm/2008/3/12/The-Flex-Show--Episode-39-OpenFlux">The Flex Show episode</a> discussing it.</p>
<p>I'm really excited for OpenFlux, have been contributing to the project quite a bit and I'm hoping to spend a lot more of time over the next while helping get OpenFlux to a stable release and posting examples on my blog so others understand what's possible.</p>
<p>The general difference between an OpenFlux component and the current Flex components is that the logic is separated in to a MVC architecture. This allows you to easily swap out one part of a component while keeping the functionality of the others. A List component goes a step further and separates the layout logic so you can easily invent new ways to layout your list items.</p>
<p>In this example I've created a cool (but possibly not too practical) OpenFlux List component that displays a deck of cards. Although it looks nothing like a standard List component, it is a List and has the same functionality that you would expect a List to have. For example, the cards are selectable and as you select multiple cards their suit/rank is displayed in a separate standard List.</p>
<p>To get the List working how I wanted all I had to do was use the Image component as my item renderer and create a custom layout class (which is now included with OpenFlux, called StackLayout). The StackLayout has gap and selectMode properties that you can play around with. Click the image below to try the working example.</p>
<p><a href="http://www.bobjim.com/flex/StackListExample/StackListExample.html"></a></p>
<p style="text-align: center"><a href="http://www.bobjim.com/flex/StackListExample/StackListExample.html" target="_new"><img src="http://www.ryancampbell.com/wp-content/uploads/2008/03/picture-1.png" alt="picture-1.png" /></a></p>
<p>You can checkout the latest OpenFlux source code, including code for the example, at the <a href="http://code.google.com/p/openflux/source/checkout">OpenFlux SVN</a> webpage. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryancampbell.com/2008/03/12/openflux-example-deck-of-cards/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
