OK. So I used this code for creating an array with JPGs that automatically cycle and loop. Now I need to know how to, based on using this code, get the JPGs to fade-in/fade-out.
_root.onEnterFrame = function() {
        Time = getTimer();
        timeToDisplay = 3;//image display time, in seconds
        delay = timeToDisplaydisplayed;//calculates the display time
        iMax = 8;//total number of images to be displayed
        if (Time>(delay1000)) {//milli = 1000, 3*1000 = 3 seconds
                if (iNum>iMax-1) {
                        iNum = 1;
                } else {
                        iNum++;
                }
                displayed++;
                loadMovie(“image”+iNum+".jpg", “mcClip”);
        }
};
Anyone have any ideas???