Colors in python

12/28/2012 14:03 sema1995#1
Hi all, I come to see if anyone can tell me how to put a text color in python, for example here.

self.sema = ui.TextLine()
self.sema.SetDefaultFontName()
self.sema.SetPosition((wndMgr.GetScreenWidth()-1385)+120, 450)
self.sema.SetText("Text Here"") # As I put color text here?
self.sema.SetOutline()


Greetings and thanks.
12/28/2012 14:14 [Patrick]#2
Code:
self.sema = ui.TextLine()
self.sema.SetDefaultFontName()
self.sema.SetPosition((wndMgr.GetScreenWidth()-1385)+120, 450)
self.sema.SetFontColor(  255, 045,   0)
self.sema.SetText("Text Here"") # As I put color text here?
self.sema.SetOutline()
untested..

Colors: [Only registered and activated users can see links. Click Here To Register...]

PS: Your clientdesign is beautiful!
12/28/2012 15:01 sema1995#3
Thanx ^^ , Yes My client desing ^^ ;)