SetStatusText

BlitzPlus Forums/BlitzPlus Beginners Area/SetStatusText

julianbury(Posted 2010) [#1]
I want to use the status bar to display scores for two players.
The LEFT player's score is easy - it's aligned left.
The RIGHT player's score insists on being left-aligned too.

Can I get it to right-align?

Or, get them side-by-side in the center?


Yeshu777(Posted 2010) [#2]
There are 2 commands:

LSet & RSet which will pad the string and align them.

Or you could use, Text, x,y, "Score "+Score, TRUE, FALSE

Which will centre the text horizontally - you just need to place them correctly.

Regards,