Delete me

Former Member
Former Member

Delete me

Parents
No Data
Reply
  • As Paul mentioned, it could be the winding rule (could be set differently if one of your objects started out as text).

    You could try running the following macro on the combined graphic.

    Sub ToggleWindingRuleOfSelectedObjects()
        Dim s As Shape
        For Each s In ActiveSelection.Shapes
            If s.Type = cdrCurveShape Then
                If s.FillMode = cdrFillWinding Then
                    s.FillMode = cdrFillAlternate
                Else
                    s.FillMode = cdrFillWinding
                End If
            End If
        Next s
    End Sub

    If this doesn't fix it, I might ask you to send me the file.

    Regards,
    Hendrik

Children