How to programmatically move node in group?

Hi, I want to know if there is a way to move a node that is located inside a group programatically? node.moveTo(x, y) doesn’t seem to be working for me. I’d like to move it relative to the entire diagram.

That is a correct way to move a Node programmatically. Or call Part.move, or call Diagram.moveParts. Remember to make all changes within a transaction.

Perhaps your problem is due to the Group.layout forcing all its member nodes to be laid out.

Works now, I must have messed up something when I tried transaction the first time. Thanks walter ;)