That's exactly what I meant
foreach(HMObject object in dictionary.Values){
}
Sorry for double post.Maybe I am missing something and sound ridiculus but i dont see a way going through HMObjects through dictionary because it a list od HMNodes that actually contains my object. I have objManager from Pdf tuts.So i came with this solution.
foreach(HMObjectNode obNode in myChildren.Values )
{
obNode.MyObject.Position = ........
}
Since current implementation of manager dont have childs in HMObjectNode i think this would do..