fade in of added component with Actionscript - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T16:13:21Zhttp://stackoverflow.com/feeds/question/1075526http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1075526/fade-in-of-added-component-with-actionscript0fade in of added component with ActionscriptXelluloid2009-07-02T16:56:37Z2009-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#10758293Answer by onekidney for fade in of added component with Actionscriptonekidney2009-07-02T18:01:58Z2009-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><?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="absolute"
creationComplete="init()">
<mx:Script>
<![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;
}
]]>
</mx:Script>
</mx:Application>
</code></pre>
http://stackoverflow.com/questions/1075526/fade-in-of-added-component-with-actionscript/1076910#10769101Answer by PiPeep for fade in of added component with ActionscriptPiPeep2009-07-02T22:10:25Z2009-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>