fade in of added component with Actionscript - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T16:13:21Z http://stackoverflow.com/feeds/question/1075526 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1075526/fade-in-of-added-component-with-actionscript 0 fade in of added component with Actionscript Xelluloid 2009-07-02T16:56:37Z 2009-08-19T11:23:28Z <p>Hi when I add a new component using Actionscript I want it to fade in smoothly, for example this component</p> <pre><code> var df : DateField = new DateField(); df.text = DateField.dateToString(new Date(),stringFormat); df.formatString = stringFormat; </code></pre> <p>I tried this </p> <pre><code> var fade : Fade = new Fade(); df.setStyle("showEffect", fade); </code></pre> <p>but that did not work.</p> <p>any ideas? =) </p> <p>Thanks in advance</p> <p>Sebastian</p> http://stackoverflow.com/questions/1075526/fade-in-of-added-component-with-actionscript/1075829#1075829 3 Answer by onekidney for fade in of added component with Actionscript onekidney 2009-07-02T18:01:58Z 2009-07-02T18:08:18Z <p>The showEffect is only triggered when you change the .visible property of the component - you need to trigger that somewhere to experience the awesomeness of the fade.</p> <p>I threw this together real quick so you can see what I mean (also notice I used a string to define the fade rather than an object - it always seems easier that way...hope it helps!)</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" creationComplete="init()"&gt; &lt;mx:Script&gt; &lt;![CDATA[ import mx.events.FlexEvent; import mx.controls.DateField; private function init():void{ var df:DateField = new DateField(); df.visible = false; df.setStyle("showEffect","Fade"); this.addChild(df); df.addEventListener(FlexEvent.CREATION_COMPLETE,triggerFade); } private function triggerFade(event:FlexEvent):void{ var df:DateField = event.currentTarget as DateField; df.visible = true; } ]]&gt; &lt;/mx:Script&gt; &lt;/mx:Application&gt; </code></pre> http://stackoverflow.com/questions/1075526/fade-in-of-added-component-with-actionscript/1076910#1076910 1 Answer by PiPeep for fade in of added component with Actionscript PiPeep 2009-07-02T22:10:25Z 2009-07-02T22:10:25Z <p>It should be pointed out that Adobe's tweening libraries and the sort are very slow. I would suggest GTween (still in beta, but I have not had any issues), TweenLite/Max (may have some licensing issues), or Tweener (Easy to use, but much slower than the other two), setting the alpha to 0 and then fading in to 1. It's not as easy, but these libraries provide much better performance.</p>