No easy way to explain really but I will try my best
What I am aiming to do is have my for loop to pair the counters with there currect from using gotoAndStop where the frame is specifed in the array
Im sure its a silly mistake Im doing its been a year since I last did any actionscript so my memory is rather fuzzy, and sorry for the poor naming going on it does make sense to me and the system for naming works across my entire file
The section is need to sort is below:
Actionscript Code:
for (a=1; a<13; a++){
EuMa.eutc[a].gotoAndStop(eucit[a]);
}
my array is named eucit, my location for the counters is EuMa, each counter is named eutc[a] where a is the counter number.
I have 12 counters in EuMa.
I know the location is correct though a simple test
Actionscript Code:
EuMa.eutc1.gotoAndStop(eucit[0]);
This will bring back the correct frame for counter 1.
I also know its the correct frame though the trace function on the array itself.
Hopefully this makes sence to someone 
Thanks
Ben