Page 1 of 1

Text background color is black

Posted: Tue Jul 05, 2016 2:19 pm
by Albert
so I would like to have a colored background but text still apears white on black
idk if you understand so I attach a photo:
Image
is there anyway to make text don't have that black background?

btw the code:

Code: Select all

SCREEN _NEWIMAGE(800, 600, 32)
CLS 2, _RGB(192, 192, 192)
PRINT "This is a text."

Re: Text background color is black

Posted: Thu Jul 07, 2016 12:15 pm
by burger2227

Re: Text background color is black

Posted: Thu Jul 07, 2016 2:21 pm
by Albert
I'm not understaing any of that :oops: :cry:

Re: Text background color is black

Posted: Thu Jul 07, 2016 6:49 pm
by burger2227
OUT can change the black to any color with RGB values from 1 to 63 instead of 1 to 255. Divide the Qb64 rgb values by 4 using out.

Re: Text background color is black

Posted: Fri Jul 08, 2016 4:38 am
by Albert
burger2227 wrote:OUT can change the black to any color with RGB values from 1 to 63 instead of 1 to 255. Divide the Qb64 rgb values by 4 using out.
ty, now I got it
but is there any way to make this work with _newimage?