Hi...
You need to place the text in an MC then you can set the depth of that MC to a higer level than the duplicated MC's.
If for example you set the duplication action as follows:
on (release) {
duplicateMovieClip ("_root.box", "newBox", 1);
}
Here we've set the depth to '1'. For our text MC to appear above the duplicated MC's we need to set the depth to a higher number, so add the following code to the text MC:
onClipEvent (load) {
this.swapDepths(10);
}
Just make sure that the figure you type as the depth is higher than your duplicates.
Hope this helps.
|