Grazie per la risposta.
Ho inserito questa stringa ma non succede nulla:
my_mc.moveTo((160-(my_mc._width/2)), 100-(my_mc._height/2));
mi sa che e' un po' piu' complicato...
posto il codice:
codice:
if(count > 0){
		_root.createEmptyMovieClip("my_mc", 0);
my_mc._alpha = 0;
larghezza = 640;
altezza = 480;
my_mc._x = 160;
my_mc._y = 100;
preload_img = function () {
	if (my_mc.getBytesLoaded() == my_mc.getBytesTotal() && my_mc.getBytesTotal()>1024) {
		if (my_mc._width>larghezza) {
			my_mc.w_ratio = my_mc._width/my_mc._height;
			my_mc._width = larghezza;
			my_mc._height = larghezza/my_mc.w_ratio;
		}
		if (my_mc._height>altezza) {
			my_mc.h_ratio = my_mc._height/my_mc._width;
			my_mc._height = altezza;
			my_mc._width = altezza/my_mc.h_ratio;
		}		my_mc._alpha = 100;
		
		clearInterval(preload_imgID);
	}
};
my_mc.moveTo((160-(my_mc._width/2)), (100-(my_mc._height/2)));
my_mc.loadMovie(image[--count]);
preload_imgID = setInterval(preload_img, 100);
	}