Can't open in illustrator, don't have the fonts. Tried "place" in illustrator and all looks good, then save as pdf, no go for corel though.pathfinder tool in illustrator will fix that and many of the cut path issues you face.
JBurton said:No, but I've got one I have a similar issue with. Montserrat, when converted to a pdf set to convert fonts to curves on the salesman's pc always comes out perfect. When he sends it over with embedded fonts, of which I have the proper font, it's fine. But when my pc converts it to curves, it does this:
You can drag the weld icon to the top toolbar to always be visible & ready to use at any time. Or, if you like, assign a shortcut key to that function....The overlap problem can be solved by converting the type object to curves/outlines and then applying a weld function to it. It's pretty straight-forward to do in Adobe Illustrator. in CorelDRAW you have to go to the Object menu, choose "Shaping" and click "Weld" on the flyout menu to remove overlapping paths in artwork. It doesn't work with the usual welding and cutting buttons that appear on the tool bars.
Hmmm, by default or...? Doesn't work for me. At least not as default with X7.alt + 1 through 5 work well as weld, trim, intersect, etc.
Sub DupAndFlipHz()....duplicate shape to the right and butt up against - ctrl+f. ctrl+df (dup right and spaced according to set nudge distance)
I'm confused how this works. I often but up two identical panels to cut on the cnc, so I typically just click a node on the side, drag to the opposite side, and drop a copy. It's not 'time consuming', but it is a frequent motion that I've been wanting to automate.
Sub DupAndFlipHz()
Dim OrigSelection As ShapeRange
Set OrigSelection = ActiveSelectionRange
Dim dup1 As ShapeRange
Set dup1 = OrigSelection.Duplicate
ActiveDocument.ReferencePoint = cdrMiddleRight
dup1.Stretch -1#, 1#
dup1.OrderToFront
dup1.Flip cdrFlipHorizontal
dup1.AddToSelection
End Sub