IconItemRenderer iconDisplay Transition Fade - mobile
How to make the transition iconDisplay mobile IconItemRender class?
Previously, I did this:
<s:transitions>
<s:Transition fromState="_edit" toState="_normal" >
<s:Fade targets="{myIconDisplay}"/>
</s:Transition>
<s:Transition fromState="_normal" toState="_edit" >
<s:Fade targets="{myIconDisplay}"/>
</s:Transition>
</s:transitions>
Unfortunately, it is not bindable standard iconDisplay so I can not use it.
Such transitions are not working in AIR:
import fl.transitions.*;
import fl.transitions.easing.*;
var myTM:TransitionManager = new TransitionManager(my_mc);
myTM.startTransition({type:Fade, direction:Transition.OUT, duration:3, easing:Strong.easeOut});}
Is it better to create everything in AS3, or I can still use mxml? How to create a an efficient list of transitions?
Please help.
