Basically i made a script that generates another script, but its the script thats being generated that seems to have the problem.
I'm looking to splash the text so fast that its can be used as a subliminal message (i found a program that does the same and didnt want to pay so thought i would make my own), the problem is that i cant get the sleep time just right, anything above 1 millisecond is too long and obviously noticeable, anything below 1 and it seems that the text splashes at random and most of the time only the box appears.
I know this is only a very small problem but is there anything i'm doing wrong?
CODE
; example of generated script
SplashTextOn("", "hello",82.5,40,-1,-1,5,"",24)
Sleep(0.5)
SplashOff()
Sleep(2000)
SplashTextOn("", "hello",82.5,40,-1,-1,5,"",24)
Sleep(0.5)
SplashOff()
Sleep(2000)