Grey 2d Window- this looks like the windows 98's Window borders
Useage:
WINDOW(10,20,30,40)
What the numbers represent:
Where:
10 = Window start X
20 = Window start Y
30 = Window end X
40 = Window end Y
Function:
FUNCTION WINDOW: Wsx,Wsy,Wex,Wey
FILLRECT Wsx, Wsy, Wex, Wey, RGB(64,64,64)
FILLRECT Wsx, Wsy, Wex-1, Wey-1, RGB(255,255,255)
FILLRECT Wsx+1, Wsy+1, Wex-1, Wey-1, RGB(128,128,128)
FILLRECT Wsx+1, Wsy+1, Wex-2, Wey-2, RGB(212,208,200)
FILLRECT Wsx+2, Wsy+2, Wex-3, Wey-3, RGB(255,255,255)
FILLRECT Wsx+2, Wsy+2, Wex-4, Wey-4, RGB(128,128,128)
FILLRECT Wsx+4, Wsy+4, Wex-4, Wey-4, RGB(212,208,200)
FILLRECT Wsx+4, Wsy+4, Wex-5, Wey-5, RGB(64,64,64)
FILLRECT Wsx+5, Wsy+5, Wex-5, Wey-5, RGB(48,48,48)
ENDFUNCTION
TIP:
You can add more inputs to the function,
, like color and/or special effects or buttons etc.