I have 100 instances of a movieclip named "sq1...100" each with a dynamic text box with a variable named "numval". The code above traces 1 to 100 but the movieclip.dynamictext for each is BLANK!!. If I replace {numval = i} with {numval = 30) they all have a thirty in them. If I use {numval = "x") they all have an x in them. Please help.
that is going to copy the value of 'i' in your sq1 to variable 'numval' in sq1 etc .. it won't even look at the value of 'i' in your loop, because of the tellTarget.
if the above code was in a function , and you used
for (var i=0; i<100; i++) { .... }
then it would work, as local variable are found first regardless of the tellTarget saying to look elsewhere. -- All the best, Jeckyl