Question
setting a variable
new to AS3...
I put this on the main timeline actions layer:
var alpha1 = 0;
inside mc1 animation on the last frame I put
alpha1 = 1;
and back on the main timeline:
if(alpha1 == 1)
{
mc1.alpha *= 0.5;
}
What am I doing wrong here?
