Ok, one more thing. Heres the code Im working with...
Quote: "DIM Map$(20,100)
#CONSTANT MAPX 70
#CONSTANT MAPY 30
rem ink RGB(0,0,255), RGB(192,192,192)
FOR Y=1 TO MAPY
FOR X=1 TO MAPX
MAP$(X,Y)="X"
NEXT X
NEXT Y
FOR Y=1 TO MAPY
FOR X=1 TO MAPX
SELECT X
CASE MAPX :
PRINT " "; MAP$(X,Y)
ENDCASE
CASE DEFAULT
PRINT " "; MAP$(X,Y);
ENDCASE
ENDSELECT
NEXT X
NEXT Y
WAIT KEY"
Run it and take note of how it looks and then change
Quote: "rem ink RGB(0,0,255), RGB(192,192,192)"
to
Quote: "ink RGB(0,0,255), RGB(192,192,192)"
Now the first thing is that the foreground is blue like it should be, but the background is still black. Second, the letters are more spaced out than when the ink command was commented out. Any suggestions?