Here is a quick way to get and set properties for all movie clips on the stage without having to know the instance names of each MovieClip.
for (var prop in this) {
if (this[prop] instanceof MovieClip) {
mc = this[prop];
trace ("test name: " + mc._name + " mc._x:" + mc._x + " a: " + mc._alpha);
}
}

