Items and Tiles Problems

Ok, this is my problem :frowning:


case 1:
_root.items.attachMovie("Guy","guy_mc", getNextHighestDepth());
_root.items.guy_mc._x = (_root.tileWdth * j);
_root.items.guy_mc._y = (_root.tileHght * i);

I cant change the code, so i use another mc. The “Guy2” doesnt even shows up, heres the changed code that i use, but it doesnt work:


case 1:
_root.items.attachMovie("Guy2","guy2_mc", getNextHighestDepth());
_root.items.guy2_mc._x = (_root.tileWdth * j);
_root.items.guy2_mc._y = (_root.tileHght * i);


I think it should work, because its the same but im only using another mc, anyone got an idea?