Hi GDL Coders,
I would like to define my own fills in a GDL object without having to rely on the locally loaded fill options. I have found online some examples of hard coded syntax fills as below:
!!!Define Fills (Start)
!===Fill Type 1: Solid
DEFINE FILL "FillSolid" 255, 255, 255, 255, 255, 255, 255, 255, 1,0,0
!===Fill Type 2: White
DEFINE FILL "FillWhite" 0, 0, 0, 0, 0, 0, 0, 0, 0,0,0
!===Fill Type 3: Grey 25%
DEFINE FILL "FillGrey25" 85, 0, 170, 0, 85, 0, 170, 0, 1,0,0
!===Fill Type 4: Grey 50% !║
DEFINE FILL "FillGrey50" 85, 170, 85, 170, 85, 170, 85, 170, 1,0,0 !║
!===Fill Type 5: Tiled !║
DEFINE FILL "FillTile" 64, 192, 192, 192, 192, 192, 255, 255, 1,0,0 !║
!!!Define Fills (End)
In the above fill example, when I use the Define FillSolid
Fill FillSolid
I get a result that is a white fill that I cannot seem to change colour of regardless of what pen I select. The other defined fills #2-5 seem to work okay and changing the pen changes the colours. Could you advise what is wrong with the fill #1 that makes it just a whiteout?
Ideally I would just like to define in the GDL script, a hard coded 'solid fill' that I can change the pen colour of using the pen pallet. Often across multiple systems there are different fill patterns and I want to avoid relying on the user to have to define his solid fill each time.
Many thanks in advance,