var r:MovieClip = this.createEmptyMovieClip ('root', 1);
var c:MovieClip = r.createEmptyMovieClip('container', 1);
c.attachMovie('foo', 'clip1', 1, {_x:10, _y:10});
trace (c._y) // traces 0 ???
i always thought the above should trace '10' instead of '0' ?!
why is that ?
micha