Trying to figure out what’s the problem with this code, it seems to move only the first object instead of iterating across all the objects do you know why?
for (let i = 1; i < SaveItemslength; i++) {
selection.items = null;
selection.items = SaveItems[i];
SaveItems[i].moveInParentCoordinates(300,0);
}
We’d have to see more code (how are SaveItems and SaveItemslength set up?), but note that you don’t need the selection.items manipulation to do the moveInParentCoordinates().