May 23, 2001 #1 peter11 Instructor Mar 16, 2001 334 US I am using a black background. How do i make the score print in a light color? picbuf.CurrentX = 90 picbuf.CurrentY = 10 picbuf.Print "Score: " & score
I am using a black background. How do i make the score print in a light color? picbuf.CurrentX = 90 picbuf.CurrentY = 10 picbuf.Print "Score: " & score
May 23, 2001 #2 BB101 Programmer May 23, 2001 337 GB similar to what you've been doing, set the ForeColor attribute to &HFFFFFF (this is in RGB hex) to make it white; i.e: picbuf.ForeColor = &HFFFFFF &H shows VB that you mean this is the hex of a color... the FFFFFF is RRGGBB (red green blue, respectively)... Upvote 0 Downvote
similar to what you've been doing, set the ForeColor attribute to &HFFFFFF (this is in RGB hex) to make it white; i.e: picbuf.ForeColor = &HFFFFFF &H shows VB that you mean this is the hex of a color... the FFFFFF is RRGGBB (red green blue, respectively)...