all groups > flash ad development > july 2005 >
You're in the

flash ad development

group:

reapeating banner only 3 times



reapeating banner only 3 times space_kat
7/4/2005 12:00:00 AM
flash ad development: I was wondering how I can make my banner rotate 3 times and then stop after the third one?

Any ideas?

Thanks in advance!

Re: reapeating banner only 3 times Armando Alves
7/5/2005 2:33:42 AM
The easiest way:

Insert a frame action in the timeline, with

if (counter < 3) {
counter+=1;
} else {
stop();
}

[quoted text, click to view]
Re: reapeating banner only 3 times hitparader61
7/7/2005 6:43:38 AM
The easy way is to create a variable as the movie begins and set its value to
0, then increment it at the end of the loop. At the beginning of the loop you
check the value of the variable, and if it is 3 or larger, just stop()....


Re: reapeating banner only 3 times FlashAcesDesign
7/8/2005 9:32:18 AM
AddThis Social Bookmark Button