Fade in/out images in movieclip actionscript

Hi all, this has been a tough task for this whole week, i cant find nothing simple enough for me to understand, i can find a fwe scripts of exactly what i want, but i dont know enough to modify the complex ones

heres what i have so far


import fl.transitions.Tween;
import fl.transitions.TweenEvent;
import fl.transitions.easing.*;
var myTween:Tween = new Tween(images_mc, "alpha", None.easeOut, 1, 0, 2, true);
var myTween2:Tween = new Tween(words_mc, "alpha", None.easeOut, 2, 0, 3, true);
myTween.start();
myTween2.start();

i have two moveclips one has text one has images
now in these movieclips i want to have multiple images in one and multiple texts in the other
and would like each of these to fade in out after one another

no buttons, just as soon as it starts

Thankyou for any help