The main thing is could I update the info bieng drawn? Thanks for all the help so far you guys have been great
edit: is there a loop that I can create that would run for x amount of seconds? that should be enough to solve me problems
[edit2]
$x = 700
$y = 80
$a = 1
$b = 30000
$text = "Test the shittie"
While $a < $b
$a = $a + 1
TextOut($x,$y,$text)
WEnd
Func TextOut($x,$y,$text)
$hdc = DllCall("user32.dll","int","GetDC","hwnd",0)
$hdc = $hdc[0]
DllCall("gdi32.dll","int","TextOut","int",$hdc,"int",$x,"int",$y,"str",$text,"int",StringLen($text))
DllCall("user32.dll","int","ReleaseDC","hwnd",0,"int",$hdc)
EndFunc
This is an ok solution for now. If anyone could tell me how to make the backround of the text transparant and change the color of the font I'd love you for ever!
[/edit2]