guitarlover
Technical User
I am developing a logo in which small squares "pixels", flicker seemingly randomly. I want them to do this for a few seconds and then stop. According to Flash help, I can do this with a do/while expression:
i = 0
do {
gotoAndPlay("flicker");
i = i + 1
} while (i<=50);
Unfortunately, it doesn't work. It just flickers away without counting.
What am I doing wrong?
Thank, Steve
i = 0
do {
gotoAndPlay("flicker");
i = i + 1
} while (i<=50);
Unfortunately, it doesn't work. It just flickers away without counting.
What am I doing wrong?
Thank, Steve