Sub Test() Dim sText As Shape, eff As Effect Set sText = ActiveLayer.CreateArtisticText(4.25, 7, "Extrude") With sText.Text.FontProperties .Name = "Arial" .Size = 120 .Style = cdrBoldFontStyle End With sText.Text.AlignProperties.Alignment = cdrCenterAlignment sText.Fill.UniformColor.CMYKAssign 100, 0, 0, 0 Set eff = sText.CreateExtrude(cdrExtrudeSmallBack, cdrVPLockedToShape, 4.25, 0.45, 40, _ cdrExtrudeColorShading, CreateCMYKColor(0, 0, 0, 100), CreateCMYKColor(0, 0, 0, 0)) eff.Extrude.UseFullColorRange = TrueEnd Sub