Give each canvas object that you want to "move at once" the identical
tag value (read the canvas manual page about 'tags') that is unique
from all other tag values. Then you can apply an operation upon all of
them at once from the canvas (assuming by "move" you mean shift the x/y
coordinates equally, if you mean rotate, then you'll need to loop
through each one in Tcl performing the rotation and updating its
coordinates appropriately). Note you can still use a common, unique,
tag even for this, because you can ask the canvas for a list of all
item id values associated with the tag, then loop through those values.