IsoDraw macro change_line_color
I need to change the color of a pen to....
Define Mycolor as ColorSpec
Mycolor.type = "rgbValues"
Mycolor.rgb.red = 255
Mycolor.rgb.green = 116
Mycolor.rgb.blue = 66
I found this......
activeDoc.pens["Thick"].color.type = "colorRef"
activeDoc.pens["Thick"].color.color = "Mycolor"
activeDoc.pens["Thick"].color.tone = 1
...but I'm confused about the syntax
any help most appreciated

