Frame and photo problem

hello i’m new in flash programing and i’m looking for help i wrote some thing like this :

//after products button press
for (i=2; i<=7; i++) {
_root.attachMovie(“frame_mc”, “holder_mc”+i, i);
with (_root[“holder_mc”+i]) {

 //size & position of holder MovieClip
 _xscale = 50;
 _yscale = 48;
 _rotation = Math.random()*5;
 _x = Math.random()*760;
 _y = Math.random()*400;
 createEmptyMovieClip("photo_mc"+i, i);

}
with (_root[“holder_mc”+i][“photo_mc”+i]) {
createEmptyMovieClip(“text_mc”+i, i);
//loadMovie(“D:/Projekty/Merc/photo/z”+i+".jpg");
_xscale = 12;
_yscale = 12;
_x = -70;
_y = -78;
}
_root[“holder_mc”+i].onPress = function() {
this.startDrag();
this.swapDepths(_root.getNextHighestDepth());
};
_root[“holder_mc”+i].onRelease = function() {
stopDrag();
};
}
you can see this at www.pjwstk.edu.pl/~s3039/zdjecia.swf
my problem is that i wont to have this pictures named but if create
TextField and i put them in to holder_mc it doesn’t rotate with picture what shoud i do?
and the second thing i need to create dobleClick on every picutre and when user do that this frame shoud make bigger but the picture should stay at the same size. i wont to place inside this frame dynamic textFields where would be description of the photography