Hi Valuater,
i have included your FreeText.au3 script in my .au3 file. when i supplied string, it displays but there are spaces in between letters. i attempted to change _FreeText_Create function, but dont know what to change and where to change. randomly changed the values but it didnt even show wrong results or errors. then stopped digging.
;********* USER INPUT **************
; Create a Background GUI?
Dim $BackGround_GUI = False
; Animation on?
Dim $Random = True
; Display your user name or ????
Dim $Title = @UserName
; seconds to wait between animations
$wMin = 1
$wMax = 10
Dim $wait = 1000;Random($wMin, $wMax, 1)
; Font Size ; -1 = random 38-50
Dim $tSize = -1
;********** END USER INPUT ***********
#include <FreeText.au3>
#include <Date.au3>
_FreeText_Create("I am great. I am improving everyday. I can handle everything." , -1, -1,20, "Black", "Arial", 30000)
Thanks for your time.