Hi i am creating a variable MCount which will increment each time the button is pressed… in turn it will then load the next movie in the folder…
what is the correct syntax to do this?
var MCount = 0;
on (release) {
MCount+1;
container.loadMovie(“flFile_“MCount”.swf”);
}