REM Created in CorelPhotoPaint Version 9.439 REM Created On Monday, January, 31, 2000 by Alex Link ' distill.csc ' This "tool" script "erodes" simple shapes on white and with ' small adjustments can make them fatter or slimmer. ' Try this script on colored text. WITHOBJECT "CorelPhotoPaint.Automation.9" .EffectGaussianBlur 3 ' (blur = 3) [rate of change] .ImageEqualize 0, 5, 5, FALSE .ImageEqualizeChannel 0, 110, 150, 0, 255, 100 ' stable = 110,150 <<<<<<<< .ImageEqualizeChannel 1, 0, 255, 0, 255, 100 ' ..grow: add 30 to each .ImageEqualizeChannel 2, 0, 255, 0, 255, 100 ' ..shrink: minus 30 from each .ImageEqualizeChannel 3, 0, 255, 0, 255, 100 .ImageEqualizeChannel 4, 0, 255, 0, 255, 100 .EndImageEqualize END WITHOBJECT