Hi. I’m building an image gallery in Flash, and I’ve struck a problem.
Here’s what I have so far: A series of movie clip buttons which animate quite nicely.
I want to make it so that when you click on one of the buttons, a series of thumbnails appears (I would put them all in a movieclip). Here’s my code for one of the buttons:
on (rollOver) {
gotoAndPlay(“over”);
}
on (rollOut) {
gotoAndPlay(“out”);
}
on (press) {
attachMovie(“india”,“india_thumbs”,0);
setProperty(“india_thumbs”, _x, “308”);
setProperty(“india_thumbs”, _y, “261.5”);
}
When I click on that button, the thumbnails appear, but they are inside the button mc. I want to either make the “india_thumbs” mc appear in a blank mc, or make it appear in its own layer.
I’m fairly a Actionscript novice, but can you help me?