attachMovieClip in a ScrollPanel?

hi there!

first of all, i’m sorry of my bad english - i’m not a native speaker.

this is my used code:
[COLOR=Blue]
on (release) {
mc_scroll.attachMovie(“mc_user”,“mc_user0”,0);
for (i=1;i<14;i++) {
mc_scroll.mc_user0.duplicateMovieClip(“mc_user”+i,i);
mc_scroll[“mc_user”+i]._y = (50*i);
}
}
[/COLOR]

mc_scroll … instance name of the scroll panel component
mc_user … the mc that contains the image
mc_userlist … the content i’ve choosen for the scroll panel

i want to copy the image (mc_user) into the scroll panel. now my mistake is -i think- that i want to attach the image directly into the scroll panel, and not in its content.
so, my question:

[COLOR=Red]how do i attach an movie to an “actionscript exported” movieclip, which is not placed on the stage?[/COLOR]

or do you have an other solution?

yours faithfully

phudy :hair: