Sub Test() Dim sGroup As Shape Dim sr As New ShapeRange sr.Add ActiveLayer.CreateEllipse2(0, 0, 0.25) sr.Add ActiveLayer.CreateLineSegment(-0.5, 0, 0.5, 0) sr.Add ActiveLayer.CreateLineSegment(0, -0.5, 0, 0.5) sr.SetOutlineProperties 0.03 Set sGroup = sr.Group sGroup.Move ActivePage.SizeWidth / 2, ActivePage.SizeHeight / 2End Sub