User Sebastien - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T20:18:15Z http://stackoverflow.com/feeds/user/41994 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/329652/enums-in-as3-flash-flex/329667#329667 2 Answer by Sebastien for Enums in AS3 / Flash / Flex? Sebastien 2008-12-01T00:16:43Z 2008-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&amp;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#329663 0 Answer by Sebastien for Flex - Binding ViewStack selectedChild Property Using a String Value Sebastien 2008-12-01T00:13:32Z 2008-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>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"&gt; &lt;mx:Script&gt; &lt;![CDATA[ import mx.core.Container; [Bindable] private var targetViewName:String = "content"; private function onClick() : void { viewStack.selectedChild = Container(viewStack.getChildByName(targetViewName)) ; } ]]&gt; &lt;/mx:Script&gt; &lt;mx:ViewStack id="viewStack" width="100%" height="100%" &gt; &lt;mx:Panel id="welcome" width="100%" height="100%" title="welcome"/&gt; &lt;mx:Panel id="content" width="100%" height="100%" title="content" /&gt; &lt;/mx:ViewStack&gt; &lt;mx:Button click="onClick()" label="click" /&gt; &lt;/mx:Application&gt; </code></pre> http://stackoverflow.com/questions/329582/is-1-for-true-or-false/329615#329615 3 Answer by Sebastien for Is 1 for TRUE or FALSE ? Sebastien 2008-11-30T23:43:15Z 2008-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#329579 2 Answer by Sebastien for What is the easiest way to learn ActionScript when you know JavaScript? Sebastien 2008-11-30T23:14:19Z 2008-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#329554 0 Answer by Sebastien for Actionscript - is it better to cast or create a new variable? Or does it matter at all? Sebastien 2008-11-30T22:55:07Z 2008-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-why 2 Which is the best OpenId provider and Why? [closed] Sebastien 2008-11-30T21:13:23Z 2008-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-why Comment by Sebastien on Which is the best OpenId provider and Why? Sebastien 2008-11-30T21:53:21Z 2008-11-30T21:53:21Z I 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