Hi Luis, I just tried the following and it seemed to work: foreach(mapcar obj geGetSelectedSet() when(obj~>objType=="line" schSetWireColor(obj "green"))) for setting the selected wire segment(s) to be 'green' in color. There is also a function schGetWireColor() . For the line thickness there is schSetWireLineStyle() , so combining this also: foreach(mapcar obj geGetSelectedSet() when(obj~>objType=="line" schSetWireColor(obj "green") schSetWireLineStyle(obj "thickLine"))) Hopefully this is what you are looking for? You should be able to see the color names when manually setting the wire color. For thicknesses, the default is "solid", thicker is "thickLine2" and thickest is "thickLine" I think. Regards, Lawrence.
↧