How can i get the following to print
glPrint(playerScore);
if glPrint requires a string and playerScore is of type int
the glPrint method is from lesson 13 of neHe’s tutorials
thanks
Danny 
You could do glPrint(""+playerScore) ?
Kev
ye, sorry i just did:
String scoreString = Integer.toString(playerScore);
glPrint("Player Score = " + scoreString);
cant believe i looked in the string part of the api and not the integer,
silly me 