hi,
U have to use any one of the Loop statement, or u have to use
enterframe/setInterval to run the script continuesly.Here is a simple code to
duplicate ur movie.
var nm_:Number = 23;
for(i=1;i<nm_;i++){
mclink.duplicateMovieClip("mclink"+i, i);
eval("mclink" + i)._y = _root.mclink._y + i*15;
eval("mclink" + i).titi_.text =_global.dataSet[i].title;
}
Regards
Devendran.I
CARABUS mobile <[EMAIL PROTECTED]> wrote:
I try to done a duplicate action to dup a movie with a text var inside.
mclin is the name for the movie create
The duplicate stop at the second time.
How ccan I do to make it duplicate it correctly ?
nm_=23;
if (n == nm_) {
stop();
} else {
mclin="mclink"+n;
mclink.duplicateMovieClip(mclin, n);
setProperty("mclink" add n, _y, _root.mclink._y+n*15);
mclin.titi_.text=_global.dataSet[n].title;
n=n+1;
}
_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
---------------------------------
Yahoo! Music Unlimited - Access over 1 million songs. Try it free.
_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders