I have a graphic that I am fading in using actionscript and right after it finishes I want to fade in another one and then another one after that one finishes. This is the actionscript that I am using to fade in the first image but what is the actionscript to get the second image to fade in upon completion of the first image?
Thanks in advance!
import mx.transitions.Tween;
import mx.transitions.easing.*;
datum1a._alpha = 0;
onEnterFrame = function():Void {
new Tween(datum1a, “_alpha”, Regular.easeOut, datum1a._alpha, 100, 1, true);
};