
-----------------------------------
xmdxtreme
Sat May 15, 2004 11:46 am

dont get it...
-----------------------------------
what does -= and += mean?

-----------------------------------
Paul
Sat May 15, 2004 12:04 pm


-----------------------------------
+= is variable:= variable + something
so a+=1 is a:=a+1

same goes for -=

-----------------------------------
xmdxtreme
Sat May 15, 2004 12:38 pm


-----------------------------------
o ok i got 1 more qestion how can i set my back ground color black and text green cause every time i do it only the background behind the text is black not the whole screen?

-----------------------------------
MyPistolsIn3D
Sat May 15, 2004 12:46 pm


-----------------------------------
This help?
var font := Font.New ("arial:18")
Draw.FillBox (0, 0, maxx, maxy, black)
Font.Draw ("This is how", 100, 100, font, brightgreen)

-----------------------------------
xmdxtreme
Sat May 15, 2004 12:47 pm


-----------------------------------
yeah thats what i wanted thx! :lol:

-----------------------------------
xmdxtreme
Sat May 15, 2004 12:49 pm


-----------------------------------
no thats no use sorry but i have to put everything in that. I know theres another way.

-----------------------------------
MyPistolsIn3D
Sat May 15, 2004 12:56 pm


-----------------------------------
explain more what you are doing, or post your code to give me a better idea of what yer doing.

-----------------------------------
guruguru
Sat May 15, 2004 1:13 pm


-----------------------------------
To set the background color use colorback(black) and to set the text color use color(green). The thing with colorback- it is the background of the text, not of the screen. An easy way to get around this is simply to clear the screen once after you set the background color.


colorback(black)
cls

color(green)

put "Yay!!! The background is black and this text is green!!!"


-----------------------------------
xmdxtreme
Sat May 15, 2004 1:39 pm


-----------------------------------
thank you :lol:
