So I load an array of img names from php, loop through it, create a movie clip and place the img in it. I have figured out how to control the properties of the clip, but I need to be able to get into more depth with it. So here's a snipit of what I have so far:
for (i=0; i<c; i++) {
_root.a = myImgArray[i];
_root.err = "/images/imglib/lil"+myImgArray[i];
_root.gallery.createEmptyMovieClip("mc"+i, i);
loadMovie("/images/imglib/lil"+myImgArray[i], "_root.gallery.mc"+i);
setProperty(eval("_root.gallery.mc"+i), _x, thumbX + 80);
thumbX += 80;
}
Which places the thumbnails across the stage. The things I'd like to get into that I can't figure out are transitions with onData, so when they load they come in with a transition. And onRelease to make them all clickable.
I can't target the movie clip with _root.gallery.mc+i.onData or _root.gallery.mc[i].onData.