User Sebastien - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T20:18:15Zhttp://stackoverflow.com/feeds/user/41994http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/329652/enums-in-as3-flash-flex/329667#3296672Answer by Sebastien for Enums in AS3 / Flash / Flex?Sebastien2008-12-01T00:16:43Z2008-12-01T00:16:43Z<p>your answer after the jump :-)</p>
<p><a href="http://livedocs.adobe.com/flex/201/html/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Book_Parts&file=04_OO_Programming_161_07.html" rel="nofollow">Enumerations with classes</a></p>
http://stackoverflow.com/questions/318542/flex-binding-viewstack-selectedchild-property-using-a-string-value/329663#3296630Answer by Sebastien for Flex - Binding ViewStack selectedChild Property Using a String ValueSebastien2008-12-01T00:13:32Z2008-12-01T00:13:32Z<p>when selectedChild is fired the viewStack doesn't have any children added so it throws a NullPointerException:</p>
<p>The following will work:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Script>
<![CDATA[
import mx.core.Container;
[Bindable]
private var targetViewName:String = "content";
private function onClick() : void
{
viewStack.selectedChild = Container(viewStack.getChildByName(targetViewName)) ;
}
]]>
</mx:Script>
<mx:ViewStack id="viewStack" width="100%" height="100%" >
<mx:Panel id="welcome" width="100%" height="100%" title="welcome"/>
<mx:Panel id="content" width="100%" height="100%" title="content" />
</mx:ViewStack>
<mx:Button click="onClick()" label="click" />
</mx:Application>
</code></pre>
http://stackoverflow.com/questions/329582/is-1-for-true-or-false/329615#3296153Answer by Sebastien for Is 1 for TRUE or FALSE ?Sebastien2008-11-30T23:43:15Z2008-11-30T23:43:15Z<p>In the Ruby programming language, 0 is not false, so beware if you start playing with it :)</p>
http://stackoverflow.com/questions/197008/what-is-the-easiest-way-to-learn-actionscript-when-you-know-javascript/329579#3295792Answer by Sebastien for What is the easiest way to learn ActionScript when you know JavaScript?Sebastien2008-11-30T23:14:19Z2008-11-30T23:14:19Z<p>My advice would be to download a copy of FlexBuilder and stick to AS3.
AS1 and AS2 are now irrelevant and not used to develop "Flash application" anymore.
don't waste your time reading about it, it might confuse you.</p>
<p>There are a lot of resources available to learn Flex, just google it.
The best book i had to read about the subject is <a href="http://rads.stackoverflow.com/amzn/click/0596526946" rel="nofollow">Essential ActionScript</a> by Colin Moock.
It is a reference</p>
<p>But most of all, code, code and code again.</p>
<p>You might try to port some of your previous projects as a good learning exercise.</p>
<p>Good luck with your learning.</p>
http://stackoverflow.com/questions/320782/actionscript-is-it-better-to-cast-or-create-a-new-variable-or-does-it-matter/329554#3295540Answer by Sebastien for Actionscript - is it better to cast or create a new variable? Or does it matter at all?Sebastien2008-11-30T22:55:07Z2008-11-30T22:55:07Z<p>for the second example you might want to test for the nullity to avoid a NullPointerException when invoking "mySpecialFunction", e.g.</p>
<pre><code>var tempItem:MyCustomObject = container.getChildAt(i) as MyCustomObject;
if ( tempItem )
{
tempItem.mySpecialFunction();
}
</code></pre>
<p>I usually prefer the second approach but you have to remember that you can only use the as operator for casting "Date" and "Array" types. </p>
http://stackoverflow.com/questions/329377/which-is-the-best-openid-provider-and-why2Which is the best OpenId provider and Why? [closed]Sebastien2008-11-30T21:13:23Z2008-11-30T21:41:33Z
<p>I just discover stackoverflow and want to contribute, I need to choose an OpenId provider
and I was wondering which openId provider is the best and why?</p>
http://stackoverflow.com/questions/329377/which-is-the-best-openid-provider-and-whyComment by Sebastien on Which is the best OpenId provider and Why?Sebastien2008-11-30T21:53:21Z2008-11-30T21:53:21ZI appreciate that and I like to be precise but considering that I never used the service, I wouldn't know what would best means anyway hence my vague question. Thanks