Ok, i did what u said and i made a movieclip to handle the button events on the outside. And your right it does allow me to click and roll over. But now i can't load more than one picture? Everytime it goes through the loop it seems to erase the picture and clip before it because i am only getting the last picture and clip it calls me at the last x location
ActionScript Code:
var xspot = 0;
for(var i = 1; i<=4; i++) {
createEmptyMovieClip("movieclipholder"+i,this.getNextHighestDepth); //Creates the holder
_root["movieclipholder"+i].createEmptyMovieClip("movieclip"+i,this.getNextHighestDepth); //Creates the picholder inside the clipholder
loadMovie("photoalbum/bullfrog111704/thumbs/"+i+".jpg",_root["movieclipholder"+i]["movieclip"+i]); //Adds the pic to the inside picholder
_root["movieclipholder"+i]._x = xspot; // Just moves the clipholder's x so they arent over eachother
_root["movieclipholder"+i].onPress = function() { // Sets up btn function on clipholder
trace("why is there only one picture!");
trace(this);
}
xspot += 100;
}