Home » questions » Flash Question?
Flash Question?
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?

Answers
Ana
On 2006-08-01 13:12:23
Anil K
On 2006-08-02 00:04:44
D
On 2006-08-01 14:34:04
Lode Vaduh
On 2006-08-01 13:08:28
Sherry L
On 2006-08-01 13:04:29