<?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>CornFlex - Flex &#38; Flash by Quentin Lengelé</title>
	<atom:link href="http://www.cornflex.org/index.php?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.cornflex.org</link>
	<description></description>
	<lastBuildDate>Wed, 28 Jul 2010 08:05:03 +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>Adobe AIR on Android devices</title>
		<link>http://www.cornflex.org/?p=190</link>
		<comments>http://www.cornflex.org/?p=190#comments</comments>
		<pubDate>Tue, 13 Jul 2010 12:21:37 +0000</pubDate>
		<dc:creator>Quentin Lengelé</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://www.cornflex.org/?p=190</guid>
		<description><![CDATA[At last, a good news and a good response to the commercial strategy of Apple! Lets show to Steve what Flash exactly is http://gotoandlearn.com/play.php?id=123 http://gotoandlearn.com/play.php?id=124]]></description>
			<content:encoded><![CDATA[<p>At last, a good news and a good response to the commercial strategy of Apple! Lets show to Steve what Flash exactly is <img src='http://www.cornflex.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://gotoandlearn.com/play.php?id=123" target="_blank">http://gotoandlearn.com/play.php?id=123</a><br />
<a href="http://gotoandlearn.com/play.php?id=124" target="_blank">http://gotoandlearn.com/play.php?id=124</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cornflex.org/?feed=rss2&amp;p=190</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Think your stuff in MVC!</title>
		<link>http://www.cornflex.org/?p=178</link>
		<comments>http://www.cornflex.org/?p=178#comments</comments>
		<pubDate>Wed, 27 Jan 2010 11:21:19 +0000</pubDate>
		<dc:creator>Quentin Lengelé</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://www.cornflex.org/?p=178</guid>
		<description><![CDATA[This little post to tell how I&#8217;m bored too find good tools but not really well coded or not well structured. A good example is the AS3 TouchLib library to build multi-touch applications with TUIO : This library is a very good idea to translate TCP data from the TUIO server (through FLOSC) to Flash&#8230; [...]]]></description>
			<content:encoded><![CDATA[<p>This little post to tell how I&#8217;m bored too find good tools but not really well coded or not well structured.<br />
A good example is the <a href="http://code.google.com/p/touchlib/" target="_blank">AS3 TouchLib</a> library to build multi-touch applications with <a href="http://www.tuio.org/" target="_blank">TUIO</a> :</p>
<p>This library is a very good idea to translate TCP data from the TUIO server (through <a href="http://www.benchun.net/flosc/" target="_blank">FLOSC</a>) to Flash&#8230; and it works well.<br />
But when you look to the sources, you can immediately understand the bad MVC knowledge of the developers of that project.<br />
The main controller (TUIO.as) and core classes are inside the flash events package (flash.events)&#8230; strange usage, no?<br />
It should be good to organize a cleaner package, something like this :</p>
<p>com.nuigroup.touchlib.controllers.TUIO<br />
com.nuigroup.touchlib.events.TouchEvent<br />
com.nuigroup.touchlib.controls.TUIOCursor<br />
com.nuigroup.touchlib.controls.TUIOObject<br />
com.nuigroup.touchlib.controls.TUIOSimulator</p>
<p>The TouchLib library is not the only case.<br />
A lot of developers release stuff and make them public too quickly.<br />
The time spent to organize your project in a good MVC/OOP way will help others to understand it easier and will help you to maintain it correctly.<br />
A framework is not required to do that. You just need to keep a good and coherent structure of your classes.<br />
For my part, I always begin a project by creating empty packages :</p>
<p>com.myproject.models<br />
com.myproject.views<br />
com.myproject.controllers<br />
com.myproject.controls<br />
com.myproject.utils</p>
<p>During the development, I will create the classes I need to the corresponding package. In that way, I&#8217;m sure to keep and good and understandable code for everybody.</p>
<p>Last point : Why AS3 frameworks?</p>
<p>I know I will get some enemies but I need to explain why I don&#8217;t like PureMVC, Cairngorm and others:</p>
<ul>
<li>There are good native tools in AS3, often ignored by the developers.</li>
<li>Using these frameworks sounds a bit like &#8220;re-invent the Life&#8221; by using extra classes, interfaces, commands and event dispatchers&#8230;</li>
<li>The code becomes exaggeratedly split into many classes.</li>
<li>Because it&#8217;s exaggeratedly split and oppositely to many ideas, you lose a lot of time when someone else has to enter in the project.</li>
</ul>
<p>There is a good idea of &#8220;re-usability&#8221; or &#8220;maintainability&#8221; behind these frameworks but if your project is just well &#8220;MVC-minded&#8221; they become useless&#8230;especially if the main goal of them is to use tools that are already in the Flash or Flex core.<br />
I&#8217;m finally thinking that these frameworks are made for(and by) people who ignore how to give a professional structure to their project.</p>
<p>I&#8217;m often surprised by the inability or fadeless of some people to simply and correctly use the native AS3 library. And, in many cases, that&#8217;s why they use a framework. Sometimes they don&#8217;t know how to manage their events properly with native EventDispatcher. Sometimes they forget other native stuff like Event.ADDED_TO_STAGE and Event.REMOVE_FROM_STAGE events to manage things to be killed and cleared from memory. Sometimes they just don&#8217;t realize it&#8217;s much more quick and simple to create your own controller and its events, a model and the views without a framework layer behind that. Sometimes&#8230;</p>
<p>Sometimes I&#8217;m so disappointed by the bullshit coming from the mouth of pseudo Certified Flex Developers. They are crazy about frameworks.<br />
One day, a colleague in consultancy to a big client told me : &#8220;He came to me to discuss 3hours about the name of a method. &#8216;GetProductByIdWhenReceivedFromForm1&#8242; or &#8216;GetProductByIdForm1&#8242;. Finally, he chose the second one and he had to refactor lots of classes and re-organize his project.&#8221;</p>
<p>First thing, we forced to admit this guy was unable to take a decision, and his faculty to choose a method name is grammatically really bad and counterproductive.  Secondly, wow&#8230; 3hours to find a way to recode 40% of your project because your framework madness is killing you from inside&#8230;</p>
<p>Hopefully, some of you, pure actionscript programmers, are not like that <img src='http://www.cornflex.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>If you do Flex applications, don&#8217;t forget Flex is already a framework.<br />
If you do Flash applications, don&#8217;t use a framework, just think MVC.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cornflex.org/?feed=rss2&amp;p=178</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>AS3 2D Ribbons Effect translated from Processing</title>
		<link>http://www.cornflex.org/?p=162</link>
		<comments>http://www.cornflex.org/?p=162#comments</comments>
		<pubDate>Tue, 28 Jul 2009 13:16:35 +0000</pubDate>
		<dc:creator>Quentin Lengelé</dc:creator>
				<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.cornflex.org/?p=162</guid>
		<description><![CDATA[This is a really nice ribbon effect made by a friend (Christophe Deaconescu). He translated the Processing code from James Alliban you can find here. The result is pretty smooth&#8230;even with a little glow filter. Move your mouse over the black area below: Here are the sources, ribbons.zip]]></description>
			<content:encoded><![CDATA[<p>This is a really nice ribbon effect made by a friend (Christophe Deaconescu).<br />
He translated the Processing code from <a href="http://jamesalliban.wordpress.com/" target="_blank">James Alliban</a> you can find <a href="http://www.jamesalliban.co.uk/blogContent/pages/2D_ribbons/" target="_blank">here</a>.<br />
The result is pretty smooth&#8230;even with a little glow filter.</p>
<p>Move your mouse over the black area below:</p>
<p>
<object width="427" height="450">
<param name="movie" value="http://www.cornflex.org/files/ribbons2D/ribbons.swf"></param>
<param name="quality" value="high"></param>
<param name="wmode" value="window"></param>
<param name="menu" value="false"></param>
<param name="bgcolor" value="#fbf9f4"></param>
<param name="allowFullScreen" value="true"></param>
<embed type="application/x-shockwave-flash" width="427" height="450" src="http://www.cornflex.org/files/ribbons2D/ribbons.swf" quality="high" bgcolor="#fbf9f4" wmode="window" menu="false" allowFullScreen="true" ></embed>
</object>
</p>
<p>Here are the sources, <a href="http://www.cornflex.org/files/ribbons2D/ribbons.zip">ribbons.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cornflex.org/?feed=rss2&amp;p=162</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>MovieClip acting like ViewStack</title>
		<link>http://www.cornflex.org/?p=107</link>
		<comments>http://www.cornflex.org/?p=107#comments</comments>
		<pubDate>Thu, 25 Jun 2009 14:16:32 +0000</pubDate>
		<dc:creator>Quentin Lengelé</dc:creator>
				<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.cornflex.org/?p=107</guid>
		<description><![CDATA[For some weeks ago, I&#8217;m using MovieClips in Flash like I use ViewStack in Flex. I made this tool because I was bored to work on FLA files with huge timeline animations where it&#8217;s almost impossible to find directly what you are looking for, especially when you work on a team and when it&#8217;s not [...]]]></description>
			<content:encoded><![CDATA[<p>For some weeks ago, I&#8217;m using MovieClips in Flash like I use ViewStack in Flex.</p>
<p>I made this tool because I was bored to work on FLA files with huge timeline animations where it&#8217;s almost impossible to find directly what you are looking for, especially when you work on a team and when it&#8217;s not your own source code.<br />
In fact, I like the way to open a FLA file and see immediately all the states of an application.</p>
<p>The ViewStack Class and the ViewStackPanel Class manage your different states (frames of a MovieClip) using Event.ADDED_TO_STAGE and Event.REMOVED_FROM_STAGE events.</p>
<p>It becomes really easy to handle you IN and OUT transitions between states and kill all the listeners in a custom view linked to a Class.</p>
<p>In the following example, you&#8217;ll see a 2 states (2 frames) ViewStack.<br />
On each frame, there is another MovieClip, linked to a Class that extends ViewStackPanel (here: ContactPanel and InfoPanel).<br />
ContactPanel and InfoPanel inherits of the init(), kill() and disappear() methods&#8230; But let&#8217;s see in details, just for the ContactPanel:</p>
<p>ContactPanel Class:</p>
<div class="codecolorer-container actionscript3  blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:600px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br />20<br />21<br />22<br />23<br />24<br />25<br />26<br />27<br />28<br />29<br />30<br />31<br />32<br />33<br />34<br />35<br />36<br />37<br />38<br />39<br />40<br />41<br />42<br />43<br />44<br />45<br />46<br />47<br />48<br />49<br />50<br />51<br />52<br />53<br /></div></td><td><div class="actionscript3 codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #9900cc; font-weight: bold;">package</span> org<span style="color: #000066; font-weight: bold;">.</span>cornflex<span style="color: #000066; font-weight: bold;">.</span>examples<span style="color: #000066; font-weight: bold;">.</span>viewstack<br />
<span style="color: #000000;">&#123;</span><br />
&nbsp; <span style="color: #0033ff; font-weight: bold;">import</span> <span style="color: #004993;">flash.display</span><span style="color: #000066; font-weight: bold;">.</span><a href="http://www.google.com/search?q=movieclip%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:movieclip.html"><span style="color: #004993;">MovieClip</span></a><span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; <span style="color: #0033ff; font-weight: bold;">import</span> <span style="color: #004993;">flash.events</span><span style="color: #000066; font-weight: bold;">.</span><a href="http://www.google.com/search?q=mouseevent%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:mouseevent.html"><span style="color: #004993;">MouseEvent</span></a><span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; <br />
&nbsp; <span style="color: #0033ff; font-weight: bold;">import</span> org<span style="color: #000066; font-weight: bold;">.</span>cornflex<span style="color: #000066; font-weight: bold;">.</span>core<span style="color: #000066; font-weight: bold;">.</span>ViewStackPanel<span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; <span style="color: #0033ff; font-weight: bold;">import</span> org<span style="color: #000066; font-weight: bold;">.</span>cornflex<span style="color: #000066; font-weight: bold;">.</span>transitions<span style="color: #000066; font-weight: bold;">.</span>TweenMax<span style="color: #000066; font-weight: bold;">;</span><br />
<br />
&nbsp; <span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #9900cc; font-weight: bold;">class</span> ContactPanel <span style="color: #0033ff; font-weight: bold;">extends</span> ViewStackPanel<br />
&nbsp; <span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #6699cc; font-weight: bold;">var</span> navigation<span style="color: #000066; font-weight: bold;">:</span><a href="http://www.google.com/search?q=movieclip%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:movieclip.html"><span style="color: #004993;">MovieClip</span></a><span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; &nbsp; <span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #6699cc; font-weight: bold;">var</span> topBanner<span style="color: #000066; font-weight: bold;">:</span><a href="http://www.google.com/search?q=movieclip%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:movieclip.html"><span style="color: #004993;">MovieClip</span></a><span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; &nbsp; <span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #6699cc; font-weight: bold;">var</span> pageContent<span style="color: #000066; font-weight: bold;">:</span><a href="http://www.google.com/search?q=movieclip%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:movieclip.html"><span style="color: #004993;">MovieClip</span></a><span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; &nbsp; <span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #6699cc; font-weight: bold;">var</span> nextButton<span style="color: #000066; font-weight: bold;">:</span><a href="http://www.google.com/search?q=movieclip%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:movieclip.html"><span style="color: #004993;">MovieClip</span></a><span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #339966; font-weight: bold;">function</span> ContactPanel<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; navigation<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">alpha</span> = <span style="color: #000000; font-weight:bold;">0</span><span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; &nbsp; &nbsp; pageContent<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">alpha</span> = <span style="color: #000000; font-weight:bold;">0</span><span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; &nbsp; &nbsp; topBanner<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">alpha</span> = <span style="color: #000000; font-weight:bold;">0</span><span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; &nbsp; &nbsp; nextButton<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">alpha</span> = <span style="color: #000000; font-weight:bold;">0</span><span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; &nbsp; <span style="color: #000000;">&#125;</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; override <span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #339966; font-weight: bold;">function</span> <span style="color: #004993;">init</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span><br />
&nbsp; &nbsp; <span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; nextButton<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><a href="http://www.google.com/search?q=mouseevent%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:mouseevent.html"><span style="color: #004993;">MouseEvent</span></a><span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">CLICK</span><span style="color: #000066; font-weight: bold;">,</span> changeFrame<span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; TweenMax<span style="color: #000066; font-weight: bold;">.</span>to<span style="color: #000000;">&#40;</span>navigation<span style="color: #000066; font-weight: bold;">,</span> <span style="color: #000066; font-weight: bold;">.</span>5<span style="color: #000066; font-weight: bold;">,</span> <span style="color: #000000;">&#123;</span><span style="color: #004993;">alpha</span><span style="color: #000066; font-weight: bold;">:</span><span style="color: #000000; font-weight:bold;">1</span><span style="color: #000000;">&#125;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; &nbsp; &nbsp; TweenMax<span style="color: #000066; font-weight: bold;">.</span>to<span style="color: #000000;">&#40;</span>topBanner<span style="color: #000066; font-weight: bold;">,</span> <span style="color: #000066; font-weight: bold;">.</span>5<span style="color: #000066; font-weight: bold;">,</span> <span style="color: #000000;">&#123;</span><span style="color: #004993;">alpha</span><span style="color: #000066; font-weight: bold;">:</span><span style="color: #000000; font-weight:bold;">1</span><span style="color: #000066; font-weight: bold;">,</span> <span style="color: #004993;">delay</span><span style="color: #000066; font-weight: bold;">:.</span>2<span style="color: #000000;">&#125;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; &nbsp; &nbsp; TweenMax<span style="color: #000066; font-weight: bold;">.</span>to<span style="color: #000000;">&#40;</span>pageContent<span style="color: #000066; font-weight: bold;">,</span> <span style="color: #000066; font-weight: bold;">.</span>5<span style="color: #000066; font-weight: bold;">,</span> <span style="color: #000000;">&#123;</span><span style="color: #004993;">alpha</span><span style="color: #000066; font-weight: bold;">:</span><span style="color: #000000; font-weight:bold;">1</span><span style="color: #000066; font-weight: bold;">,</span> <span style="color: #004993;">delay</span><span style="color: #000066; font-weight: bold;">:.</span>4<span style="color: #000000;">&#125;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; &nbsp; &nbsp; TweenMax<span style="color: #000066; font-weight: bold;">.</span>to<span style="color: #000000;">&#40;</span>nextButton<span style="color: #000066; font-weight: bold;">,</span> <span style="color: #000066; font-weight: bold;">.</span>5<span style="color: #000066; font-weight: bold;">,</span> <span style="color: #000000;">&#123;</span><span style="color: #004993;">alpha</span><span style="color: #000066; font-weight: bold;">:</span><span style="color: #000000; font-weight:bold;">1</span><span style="color: #000066; font-weight: bold;">,</span> <span style="color: #004993;">delay</span><span style="color: #000066; font-weight: bold;">:.</span>6<span style="color: #000000;">&#125;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; &nbsp; <span style="color: #000000;">&#125;</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; override <span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #339966; font-weight: bold;">function</span> kill<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span><br />
&nbsp; &nbsp; <span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; <span style="color: #009900; font-style: italic;">//clear listeners and stuff...</span><br />
&nbsp; &nbsp; <span style="color: #000000;">&#125;</span> &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; override <span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #339966; font-weight: bold;">function</span> disappear<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span><br />
&nbsp; &nbsp; <span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; TweenMax<span style="color: #000066; font-weight: bold;">.</span>to<span style="color: #000000;">&#40;</span>nextButton<span style="color: #000066; font-weight: bold;">,</span> <span style="color: #000066; font-weight: bold;">.</span>5<span style="color: #000066; font-weight: bold;">,</span> <span style="color: #000000;">&#123;</span><span style="color: #004993;">alpha</span><span style="color: #000066; font-weight: bold;">:</span><span style="color: #000000; font-weight:bold;">0</span><span style="color: #000000;">&#125;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; &nbsp; &nbsp; TweenMax<span style="color: #000066; font-weight: bold;">.</span>to<span style="color: #000000;">&#40;</span>pageContent<span style="color: #000066; font-weight: bold;">,</span> <span style="color: #000066; font-weight: bold;">.</span>5<span style="color: #000066; font-weight: bold;">,</span> <span style="color: #000000;">&#123;</span><span style="color: #004993;">alpha</span><span style="color: #000066; font-weight: bold;">:</span><span style="color: #000000; font-weight:bold;">0</span><span style="color: #000066; font-weight: bold;">,</span> <span style="color: #004993;">delay</span><span style="color: #000066; font-weight: bold;">:.</span>2<span style="color: #000000;">&#125;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; &nbsp; &nbsp; TweenMax<span style="color: #000066; font-weight: bold;">.</span>to<span style="color: #000000;">&#40;</span>topBanner<span style="color: #000066; font-weight: bold;">,</span> <span style="color: #000066; font-weight: bold;">.</span>5<span style="color: #000066; font-weight: bold;">,</span> <span style="color: #000000;">&#123;</span><span style="color: #004993;">alpha</span><span style="color: #000066; font-weight: bold;">:</span><span style="color: #000000; font-weight:bold;">0</span><span style="color: #000066; font-weight: bold;">,</span> <span style="color: #004993;">delay</span><span style="color: #000066; font-weight: bold;">:.</span>4<span style="color: #000000;">&#125;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; &nbsp; &nbsp; TweenMax<span style="color: #000066; font-weight: bold;">.</span>to<span style="color: #000000;">&#40;</span>navigation<span style="color: #000066; font-weight: bold;">,</span> <span style="color: #000066; font-weight: bold;">.</span>5<span style="color: #000066; font-weight: bold;">,</span> <span style="color: #000000;">&#123;</span><span style="color: #004993;">alpha</span><span style="color: #000066; font-weight: bold;">:</span><span style="color: #000000; font-weight:bold;">0</span><span style="color: #000066; font-weight: bold;">,</span> <span style="color: #004993;">delay</span><span style="color: #000066; font-weight: bold;">:.</span>6<span style="color: #000066; font-weight: bold;">,</span> onComplete<span style="color: #000066; font-weight: bold;">:</span>finish<span style="color: #000000;">&#125;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span>&nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #000000;">&#125;</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #0033ff; font-weight: bold;">private</span> <span style="color: #339966; font-weight: bold;">function</span> changeFrame<span style="color: #000000;">&#40;</span>evt<span style="color: #000066; font-weight: bold;">:</span><a href="http://www.google.com/search?q=mouseevent%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:mouseevent.html"><span style="color: #004993;">MouseEvent</span></a><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span><br />
&nbsp; &nbsp; <span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; viewstack<span style="color: #000066; font-weight: bold;">.</span>goto<span style="color: #000000;">&#40;</span><span style="color: #000000; font-weight:bold;">2</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; &nbsp; <span style="color: #000000;">&#125;</span><br />
&nbsp; &nbsp; <br />
&nbsp; <span style="color: #000000;">&#125;</span><br />
<span style="color: #000000;">&#125;</span></div></td></tr></tbody></table></div>
<p>The main Class of the FLA File, ViewStackExample:</p>
<div class="codecolorer-container actionscript3  blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br />20<br />21<br />22<br />23<br />24<br />25<br />26<br />27<br /></div></td><td><div class="actionscript3 codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #9900cc; font-weight: bold;">package</span> org<span style="color: #000066; font-weight: bold;">.</span>cornflex<span style="color: #000066; font-weight: bold;">.</span>examples<span style="color: #000066; font-weight: bold;">.</span>viewstack<br />
<span style="color: #000000;">&#123;</span><br />
&nbsp; <span style="color: #0033ff; font-weight: bold;">import</span> <span style="color: #004993;">flash.display</span><span style="color: #000066; font-weight: bold;">.</span><a href="http://www.google.com/search?q=movieclip%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:movieclip.html"><span style="color: #004993;">MovieClip</span></a><span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; <span style="color: #0033ff; font-weight: bold;">import</span> <span style="color: #004993;">flash.events</span><span style="color: #000066; font-weight: bold;">.</span><a href="http://www.google.com/search?q=mouseevent%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:mouseevent.html"><span style="color: #004993;">MouseEvent</span></a><span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; <br />
&nbsp; <span style="color: #0033ff; font-weight: bold;">import</span> org<span style="color: #000066; font-weight: bold;">.</span>cornflex<span style="color: #000066; font-weight: bold;">.</span>core<span style="color: #000066; font-weight: bold;">.</span>ViewStack<span style="color: #000066; font-weight: bold;">;</span><br />
<br />
&nbsp; <span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #9900cc; font-weight: bold;">class</span> ViewStackExample <span style="color: #0033ff; font-weight: bold;">extends</span> <a href="http://www.google.com/search?q=movieclip%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:movieclip.html"><span style="color: #004993;">MovieClip</span></a><br />
&nbsp; <span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #6699cc; font-weight: bold;">var</span> viewstack<span style="color: #000066; font-weight: bold;">:</span>ViewStack<span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #6699cc; font-weight: bold;">var</span> jumpButton<span style="color: #000066; font-weight: bold;">:</span><a href="http://www.google.com/search?q=movieclip%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:movieclip.html"><span style="color: #004993;">MovieClip</span></a><span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #339966; font-weight: bold;">function</span> ViewStackExample<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; viewstack<span style="color: #000066; font-weight: bold;">.</span>debug = <span style="color: #0033ff; font-weight: bold;">true</span><span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; jumpButton<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><a href="http://www.google.com/search?q=mouseevent%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:mouseevent.html"><span style="color: #004993;">MouseEvent</span></a><span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">CLICK</span><span style="color: #000066; font-weight: bold;">,</span> handleClick<span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; &nbsp; <span style="color: #000000;">&#125;</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #0033ff; font-weight: bold;">private</span> <span style="color: #339966; font-weight: bold;">function</span> handleClick<span style="color: #000000;">&#40;</span>event<span style="color: #000066; font-weight: bold;">:</span><a href="http://www.google.com/search?q=mouseevent%20inurl:http://livedocs.adobe.com/flex/201/langref/%20inurl:mouseevent.html"><span style="color: #004993;">MouseEvent</span></a><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span><br />
&nbsp; &nbsp; <span style="color: #000000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; viewstack<span style="color: #000066; font-weight: bold;">.</span>goto<span style="color: #000000;">&#40;</span><span style="color: #000000; font-weight:bold;">2</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span><br />
&nbsp; &nbsp; <span style="color: #000000;">&#125;</span><br />
&nbsp; &nbsp; <br />
&nbsp; <span style="color: #000000;">&#125;</span><br />
<span style="color: #000000;">&#125;</span></div></td></tr></tbody></table></div>
<p>As you can see in the Main Class, I put a jumpButton to show the possibility to call other states from outside the viewstack itself.<br />
You can imagine to have a navigation working with indexes and telling the viewstack on which state it has to go&#8230;</p>
<p>And the SWF output :<br />

<object width="427" height="450">
<param name="movie" value="http://www.cornflex.org/files/viewstack/viewstack.swf"></param>
<param name="quality" value="high"></param>
<param name="wmode" value="window"></param>
<param name="menu" value="false"></param>
<param name="bgcolor" value="#fbf9f4"></param>
<param name="allowFullScreen" value="true"></param>
<embed type="application/x-shockwave-flash" width="427" height="450" src="http://www.cornflex.org/files/viewstack/viewstack.swf" quality="high" bgcolor="#fbf9f4" wmode="window" menu="false" allowFullScreen="true" ></embed>
</object>
</p>
<p>To understand well the concept, I advice to take a look to my sources, <a title="sources" href="http://www.cornflex.org/files/viewstack/viewstackExample.zip">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cornflex.org/?feed=rss2&amp;p=107</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FLARToolKit : AS3 Augmented Reality</title>
		<link>http://www.cornflex.org/?p=66</link>
		<comments>http://www.cornflex.org/?p=66#comments</comments>
		<pubDate>Wed, 25 Mar 2009 15:29:00 +0000</pubDate>
		<dc:creator>Quentin Lengelé</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Papervision3D]]></category>

		<guid isPermaLink="false">http://www.cornflex.org/?p=66</guid>
		<description><![CDATA[Months ago, I saw lots of video examples on blogs and YouTube and finally I got some time and found AS3 sources from some brilliant japanese guys (Libspark). They built an AS3 library called FLARToolKit which is translated from a Java library (NyARToolkit). This library can detect a &#8220;marker&#8221; on a video source and calculate [...]]]></description>
			<content:encoded><![CDATA[<p>Months ago, I saw lots of video examples on blogs and YouTube and finally I got some time and found AS3 sources from some brilliant japanese guys (<a href="http://www.libspark.org/wiki/WikiStart/en" target="_blank">Libspark</a>).<br />
They built an AS3 library called <a href="http://www.libspark.org/wiki/saqoosha/FLARToolKit/en" target="_blank">FLARToolKit</a> which is translated from a Java library (<a href="http://nyatla.jp/nyartoolkit/wiki/index.php?FrontPage" target="_blank">NyARToolkit</a>).<br />
This library can detect a &#8220;marker&#8221; on a video source and calculate its position in a three-dimensional space.<br />
Theses coordinates can be easily used with Papervision3D and applied on a Collada Object or anything else.</p>
<p>Here is my AS3 Augmented Reality Example, done with a Spongle Bob 3DS file found for free on <a href="http://www.turbosquid.com" target="_blank">TurboSquid</a>.</p>
<p>Here are some screenshots :</p>

<a href='http://www.cornflex.org/?attachment_id=74' title='bob01'><img width="150" height="150" src="http://www.cornflex.org/wp-content/uploads/2009/03/bob01-150x150.jpg" class="attachment-thumbnail" alt="bob01" title="bob01" /></a>
<a href='http://www.cornflex.org/?attachment_id=75' title='bob02'><img width="150" height="150" src="http://www.cornflex.org/wp-content/uploads/2009/03/bob02-150x150.jpg" class="attachment-thumbnail" alt="bob02" title="bob02" /></a>
<a href='http://www.cornflex.org/?attachment_id=76' title='bob03'><img width="150" height="150" src="http://www.cornflex.org/wp-content/uploads/2009/03/bob03-150x150.jpg" class="attachment-thumbnail" alt="bob03" title="bob03" /></a>

<p>You wanna test it?</p>
<p>1. Download the <a href="http://www.cornflex.org/files/flar/marker.pdf" target="_blank">marker</a> in the PDF document and print it.<br />
2. Allow Flash to access to your webcam when it asks.<br />
3. Point the webcam at the printed marker.</p>
<p>
<object width="427" height="320">
<param name="movie" value="http://www.cornflex.org/files/flar/flar.swf"></param>
<param name="quality" value="high"></param>
<param name="wmode" value="window"></param>
<param name="menu" value="false"></param>
<param name="bgcolor" value="#fbf9f4"></param>
<param name="allowFullScreen" value="true"></param>
<embed type="application/x-shockwave-flash" width="427" height="320" src="http://www.cornflex.org/files/flar/flar.swf" quality="high" bgcolor="#fbf9f4" wmode="window" menu="false" allowFullScreen="true" ></embed>
</object>
<br />
Sources available soon <img src='http://www.cornflex.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.cornflex.org/?feed=rss2&amp;p=66</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Adobe Flex SDK 3.3.0.4852, here it goes again</title>
		<link>http://www.cornflex.org/?p=56</link>
		<comments>http://www.cornflex.org/?p=56#comments</comments>
		<pubDate>Tue, 10 Mar 2009 14:07:40 +0000</pubDate>
		<dc:creator>Quentin Lengelé</dc:creator>
				<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://www.cornflex.org/?p=56</guid>
		<description><![CDATA[Am I wrong or the Charting Components are parts of the Free Flex SDK? If I&#8217;m not, the Adobe Flex Dev Team forgot to implement these Charting Components in their last SDK, once again. One fixed or semi-fixed thing is you don&#8217;t need to add the &#8220;playerglobal.swc&#8221; when you create a project. I said semi-fixed [...]]]></description>
			<content:encoded><![CDATA[<p>Am I wrong or the Charting Components are parts of the Free Flex SDK?<br />
If I&#8217;m not, the Adobe Flex Dev Team forgot to implement these Charting Components in their last SDK, once again.</p>
<p>One fixed or semi-fixed thing is you don&#8217;t need to add the &#8220;playerglobal.swc&#8221; when you create a project.<br />
I said semi-fixed because, if you want to build a Flex project using Flash 10 player features, you need to remove the playerglobal.swc (FP9) and replace it by the playerglobal.swc (FP10). And If you don&#8217;t forget to change your HTML Wrapper &#8220;Required Flash Player Version&#8221; on 10.0.12, with a bit of chance, it will work correctly.</p>
<p>Hopefully, these tricks are common for experimented Flex/Eclipse users. But think one instant to the poor developpers wanting to learn some MXML and stuff&#8230; They have to be very very patient to set up their IDE before starting to enjoy the power of Flex.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cornflex.org/?feed=rss2&amp;p=56</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Adobe Flex 3.2.0.3958, not so good</title>
		<link>http://www.cornflex.org/?p=51</link>
		<comments>http://www.cornflex.org/?p=51#comments</comments>
		<pubDate>Thu, 22 Jan 2009 09:35:49 +0000</pubDate>
		<dc:creator>Quentin Lengelé</dc:creator>
				<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://www.cornflex.org/?p=51</guid>
		<description><![CDATA[I&#8217;ve found some other bad stuff in the last production release of the Flex SDK. There is no Chart Components There is no more GroupingCollection in mx.collections When you create a project with the 3.2.0.3958, you MUST add the playerglobal.swc (Flash9 or Flash10) library if you want to use classes like MovieClip, Loader,&#8230; At least, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve found some other bad stuff in the last production release of the Flex SDK.</p>
<ol>
<li>There is no Chart Components</li>
<li>There is no more GroupingCollection in mx.collections</li>
<li>When you create a project with the 3.2.0.3958, you MUST add the playerglobal.swc (Flash9 or Flash10) library if you want to use classes like MovieClip, Loader,&#8230;</li>
</ol>
<p>At least, we are able to compile Flash 10 applications and use the expected unloadAndStop(true) and System.gc() methods&#8230; but Jesus! When they are planning to release a complete and bug free SDK?!</p>
<p>How can they announce that :<br />
&#8220;Flex SDK version 3.2.0.3958 is the latest <strong>production quality release</strong>.&#8221; at <a href="http://opensource.adobe.com/wiki/display/flexsdk/Flex+SDK" target="_blank">http://opensource.adobe.com/wiki/display/flexsdk/Flex+SDK</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cornflex.org/?feed=rss2&amp;p=51</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe AIR 1.5 codename Cosmo</title>
		<link>http://www.cornflex.org/?p=39</link>
		<comments>http://www.cornflex.org/?p=39#comments</comments>
		<pubDate>Fri, 12 Sep 2008 10:46:17 +0000</pubDate>
		<dc:creator>Quentin Lengelé</dc:creator>
				<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://www.cornflex.org/?p=39</guid>
		<description><![CDATA[Mike Chambers Article here. I was hoping for a long time Adobe AIR team release a new version of AIR. I was hoping especially for the memory leaks (garbage collector) in the Flash Player 9 normally fixed in Flash Player 10 and other bugs. But I was a bit disappointed : There is no runtime [...]]]></description>
			<content:encoded><![CDATA[<p>Mike Chambers Article <a title="Adobe AIR 1.5" href="http://www.mikechambers.com/blog/2008/09/11/adobe-air-15-cosmo-builds-now-in-flex-sdk-nightly-builds/" target="_blank">here</a>.</p>
<p>I was hoping for a long time Adobe AIR team release a new version of AIR. I was hoping especially for the memory leaks (garbage collector) in the Flash Player 9 normally fixed in Flash Player 10 and other bugs.</p>
<p>But I was a bit disappointed :</p>
<p>There is no runtime installer in the AIR 1.5 given in the last SDK Nightly build.<br />
We still have to wait before testing and debugging <img src='http://www.cornflex.org/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /><br />
I installed the last SDK in Flex Builder but we just able to see AS3 code improvements and we cannot export an AIR application because there is no runtime to play it.</p>
<p>The only way to test improvements is to build a Flex Application with that new SDK because there is a Flash Player 10 beta2 for Internet Browsers.</p>
<p>And I was disappointed again :</p>
<p>I wanted to test the famous and expected &#8220;unloadAndStop()&#8221; method of the Loader Class.<br />
The purpose of that method is to kill all listeners and free memory of a loaded SWF inside a Flash-Flex-AIR application. &#8230; It still seems to be buggy because I cannot see memory variations when this method is called.<br />
I hope it&#8217;s due to the beta2 version of Flash Player 10 because this bug is a real mess! The unload() method of the MovieClip class in Flash Player 8 was working so perfectly !!</p>
<p>Definitely, Adobe put companies in bad situation. Think one instant to the companies have been planned big projects with Flex or AIR and they are blocked now due to bugs that was not there in previous Flash Player versions&#8230;</p>
<p>Can we continue to wait quietly ?? It&#8217;s difficult to do&#8230;when clients are nervous.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cornflex.org/?feed=rss2&amp;p=39</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WeatherVision3D</title>
		<link>http://www.cornflex.org/?p=32</link>
		<comments>http://www.cornflex.org/?p=32#comments</comments>
		<pubDate>Fri, 25 Jul 2008 15:49:42 +0000</pubDate>
		<dc:creator>Quentin Lengelé</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Papervision3D]]></category>

		<guid isPermaLink="false">http://www.cornflex.org/?p=32</guid>
		<description><![CDATA[I&#8217;m developping a new way of General Positionning System with Flash 9. It&#8217;s still in beta and it has to be bundled with Flicker and many other GPS services.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m developping a new way of General Positionning System with Flash 9.<br />
It&#8217;s still in beta and it has to be bundled with Flicker and many other GPS services.</p>
<p><a href="http://www.cornflex.org/weathervision" target="_blank"><img class="alignnone size-full wp-image-33" title="weathervision" src="http://www.cornflex.org/wp-content/uploads/2008/07/weathervision.jpg" alt="" width="450" height="429" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cornflex.org/?feed=rss2&amp;p=32</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to build a SphericVR quickly</title>
		<link>http://www.cornflex.org/?p=31</link>
		<comments>http://www.cornflex.org/?p=31#comments</comments>
		<pubDate>Thu, 17 Apr 2008 13:51:04 +0000</pubDate>
		<dc:creator>Quentin Lengelé</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Papervision3D]]></category>

		<guid isPermaLink="false">http://www.cornflex.org/?p=31</guid>
		<description><![CDATA[Click and move your mouse over the image. Again, you need to build a sphere with 3DStudioMax and export it in ASE format. And your texture has to be a spherical shot to be applied on the sphere. Take a look to my sources here.]]></description>
			<content:encoded><![CDATA[<p>
<object width="427" height="371">
<param name="movie" value="http://www.cornflex.org/files/sphericVR/main.swf"></param>
<param name="quality" value="high"></param>
<param name="wmode" value="window"></param>
<param name="menu" value="false"></param>
<param name="bgcolor" value="#fbf9f4"></param>
<param name="allowFullScreen" value="true"></param>
<embed type="application/x-shockwave-flash" width="427" height="371" src="http://www.cornflex.org/files/sphericVR/main.swf" quality="high" bgcolor="#fbf9f4" wmode="window" menu="false" allowFullScreen="true" ></embed>
</object>
</p>
<p>Click and move your mouse over the image.</p>
<p>Again, you need to build a sphere with 3DStudioMax and export it in ASE format.<br />
And your texture has to be a spherical shot to be applied on the sphere.</p>
<p>Take a look to my sources <a href="http://www.cornflex.org/files/sphericVR/srcview/index.html" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cornflex.org/?feed=rss2&amp;p=31</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>
