ok so I have this script that does tween of the alpha channel it works in flash 6, but not flash 8. can someone help me out and convert it so it works with todays action script? because I’m still old school.
// functions
function fade(mc, alpha) {
this.onEnterFrame = function() {
i++;
mc._alpha = 100-i;
if (mc._alpha<=alpha) {
delete this.onEnterFrame;
}
};
// actions
fade(_root.startup, 0);