Buenas tardes a todos

Quisiera que por favor me regalaran una luz en el camino. ya q llevo mas de dos dias en el limbo.....
estoy haciendo una prueba que consiste en una especie de cruz en flash con varios botones uno arriba otro abajo e igual uno izquierdo y otro derecho.

lo pueden ver en esta direccion.

http://www.pasiondelfutbol.net/gerard/prueba.html

ya creo tener resuelto el movimiento. pero no entiendo por q no logro ver las otras imagenes que estan dentro del moviclip. el archivo esta compuesto por una capa de acciones, otra de botones y la otra con el moviclip que contiene mi cruz
el codigo es

stop();
_global.targetX = 0;
_global.targetY = 0;
initWindow();
window_mc.container_mc.onEnterFrame = moveCamera;


function initWindow() {
var c = 0;
for (i=1; i<7; i++) {
myClip = _root.window_mc.container_mc["clip"+i];
if (i%2>0) {
//it's odd numbered
myClip._x = -135;
myClip._y = -245;
c++;
} else {
//it's even numbered
myClip._x = 0;
myClip._y = _root.window_mc.container_mc["clip"+(i-1)]._y;
}
}
}
// enterFrame for window.container clip
function moveCamera() {
friction = 0.35;
distanceX = (targetX-this._x)*friction;
distanceY = (targetY-this._y)*friction;
this._x += distanceX;
this._y += distanceY;
}
function updateTargets(x,y){
targetX = x;
targetY = y;
}

// button actions
button1_btn.onRelease = function() {
updateTargets(1024,0);
}
button2_btn.onRelease = function() {
updateTargets(0,768);
}
button3_btn.onRelease = function() {
updateTargets(0,-768);
}
button4_btn.onRelease = function() {
updateTargets(-1024,0);
}
button5_btn.onRelease = function() {
updateTargets(0,0);
}
button6_btn.onRelease = function() {
updateTargets(0,0);
}