My Trace Macro | Color Mode? HELP?

I cannot figure out how to change my color mode to my active palette colors. Actually is it the "color mode" or the Palette ID? 

How do you set them up?

Sub bitmapTrace()
Dim sBit As Shape
Dim sTrace As ShapeRange

Set sBit = ActiveShape
With sBit.Bitmap.Trace(cdrTraceLineArt)
.DetailLevelPercent = 95
.Smoothing = 30
'.ColorMode
'.PaletteID
'.ColorCount
.DeleteOriginalObject = False
.RemoveBackground = True
.RemoveEntireBackColor = True
.Finish
End With

Set sTrace = ActiveSelectionRange
sTrace.CreateSelection
sTrace.Move 7, 0



ActiveWindow.Refresh
Application.Refresh
End Sub


'

Parents
No Data
Reply
  • you only have two choices for your workspace color mode, rgb or cmyk. I never thought of the color palettes being either inactive or active they're just in view or not. My workspace is set to rgb and the only color palette I have in view is "my palette " which I've customized from the default corel palette most of which are cmyk colors with a few pantones thrown in. I'm not sure I follow.
    Doesn't trace make the colors based on what you're tracing at the time? Trace an rgb and the result will be rgb, trace a cmyk and cmyk is what you get?
Children