In the code I’m writing, I use a with block to reference a newly created object thus:
with ( ArrowL.duplicateMovieClip ( "ArrowL" + i , -500 + i , ArrowL ) )
The with command works great, and I set its _x, its _y and stuff. Then I parse an XML object and put the result into a variable (still in the with block). The variable (xot), however, isn’t registering as part of the newly created object, but instead settles down under _root!
I tried doing this.xot, xot, and other stuff, but it just keeps sliding under _root.xot instead of ArrowL##.xot.