Using macros to draw items. How (and where) do you set line type and fill.
I'm getting bogged down trying to do something simple.
I'm trying to draw items in a macro, some in "No Pen", some with "Thick" lines and some with white fill
I'm using rectangle, but am having problems both setting the fill type (can't see how this is set) and in getting the pen type to work.
The example below is the simplest way I can show the problem pen problem.
macro testrectangle
Set active pen "No Pen"
create rectangle 9 9 9 19 19 19 19 9
Set active pen "Thick"
create rectangle 10 10 10 20 20 20 20 10
end macro
What I think it should do is draw 1 rectangle in "No Pen" and the 2nd rectangle in "Thick", but what it does is draw both rectangles in thick and thin.
Do rectangles work differently to lines - can't you set the linetype and fill for them in a macro?

