Ok we'll go through this bit by bit:
you will be getting some of these:
Code:
1151: A conflict exists with definition clipArray in namespace internal.
Warning: 3596: Duplicate variable definition.
This is because you are using the same variable name more than once (and trying to assign values to them) in the same scope. so a scope would be in the same class, function or as in your case timeline.
so if you do this
ActionScript Code:
var asdf:Number = 1;
var asdf:Number = 2;//error
flash chucks an error because it wants you to use different vars eg
ActionScript Code:
var asdf:Number = 1;
var asdf2:Number = 2;// ok! :)
because of the way you have written your code (more on that) its more difficult to identify these conflicts because they are on different levels. So the short term solution is to go through and give them all different names eg
find all your
change to
ActionScript Code:
var clipArray1:Array
var clipArray2:Array
//etc
you will also be getting these errors
Code:
1021: Duplicate function definition.
which is basically the same only for functions:
go and find EVERY function and give it a unique name.
At the level of complexity you are trying to achieve you need to move off coding on the timeline. Some people may disagree with this statement; They are wrong. You need to start making classes even if you are just creating a document class for this project. If you do this then the errors that you currently have will never occur. There are many other benefits as well.
Depending on your time and how capable you want to become in coding flash I would recommend starting this project using classes (.as files) now.
It would also appear that you may have attempted to build your project in one massive move (I could be wrong, if so then my apologies ignore the rest) when it is a much safer move to build it in small managable steps. So get the first button working, then the first group of buttons working and then start adding more groups. IF you have done this then it would be helpful to please post you most recent Working project.
Luck,
S