dear all

i am creating an interactive calendar in flash. I have created an array for the months as follows:

var monthArray = ["september", "october", "november", "december", "january", "february", "march", "april", "may", "june", "july", "august"];

I have some movieclips called september_mc, october_mc etc...
I am trying to set the visibility of the movieclips to 0, using the following code:

for (x=0; x<13; x++) {
setProperty ("_root." add monthArray(x) add "_mc", _visible, "0");
}

it is not working. Any ideas?

any help would be much appreciated.