Hi there everyone,
Maybe the answer to my question is simply “no”, but I need to ask u proffesionals first in order to be sure.
I’m using MovieClipLoader / loadClip to dynamically load images on to the stage. I’m loading 12 images into movieClips like “target_1”, “target_2” etc…target as following:
for (var i:Number = 1; i<12; i++)
{
myMCL.loadClip("images/people/"+ i +".png", people_slider + ".mc_"+ i + ".target_" + i);
}
As far as I know, the image automatically loads in the top left corner of the target_mc. My question is: Is it possible to align the images, before or after loading them, to “center” “bottom”?
The thing is that I have a “onRollOver” effect assigned to each image, and that effect needs the images to be aligned bottom center to the clip.
Any suggestions, or help in the right direction would be greatly appreciated!