IsoDraw macro change_text_color
please can some one help.
I need to select text and change the character fill to
rbg 255
rbg 116
rbg 66
I have started with........but the color bit confuses me
macro Change_Text_Color
Select if Type is equal to "Text"
Define el as Element
el = activeDoc.firstSelectedElement
while (Exists (el) = true )
el.fill.colSpec.rgb.green = 255
el.fill.colSpec.rgb.green = 116
el.fill.colSpec.rgb.blue = 66
el = el.nextSelectedElement
end while
end macro

