in the following script:
on (release) {
img4_mc.onEnterFrame = function() {
img4_mc._alpha -= 5;
if (img4_mc._alpha <= 0) {
img4_mc._visible = false;
delete img4_mc.onEnterFrame;
}
};
}
on (release) {
img3_mc.onEnterFrame = function() {
img3_mc._alpha += 5;
if (img3_mc._alpha <= 100) {
img3_mc._visible = true;
}
};
}
img3_mc fades in before img4_mc fades out, can anyone tell me how I modify the code to make it so img4_mc fades out and then img3_mc fades in?
2006-08-01
09:01:18
·
5 answers
·
asked by
tektonnic
2
in
Computers & Internet
➔ Programming & Design