movieclip names and coordinates
Three questions:
1) Say I have a movieclip instance named myMC, positioned at 0,0 (according to the properties panel) but getting the _x _y values in a script yield 40,40? (apparently the center position)
How do I reconcile this discrepancy?
2) Why does this:
trace(myMC._x);
yield 40, while this:
currentmc = "myMC";
trace(currentmc._x);
yield undefined?
3) Why can't movieclip instances be named numbers? Well, technically, I can name them numbers, but trying to then reference them in a script generates errors.