i’m trying to tween an mc from alpha 0 to 100 with code
for(x=1; x<100; x++) {
myClip_mc._alpha =x;
}
the above is way too fast - so i trieda nested loop
i = 1;
for(x=1; x<10000; x++) {
// slow down i’s increment
i = (x / 100);
myClip_mc._alpha =i;
}
i’m not sure that’s making any difference - my maths is hit-and-miss
still, the clip seems to tween too fast
could i use setinterval here and/or could somebody give me a hint as to how to achieve my goal?
cheers
=)