i would like to convert all line segments into curve segments from the active selection at once .... any script
Sub ConvertAllToCurve
Dim sr As ShapeRange, s As ShapeSet sr = ActiveSelectionRangeActiveDocument.BeginCommandGroup "Convert"Optimization = TrueFor Each s In srs.ConvertToCurvesNext sOptimization = False: RefreshActiveDocument.EndCommandGroup
End Sub