Spelling Out

Blitz3D Forums/Blitz3D Beginners Area/Spelling Out

Yo! Wazzup?(Posted 2007) [#1]



Or, for a shorter version:




Alright, my question is...
How do you spell out the name (like all the other text) that the user types in?


b32(Posted 2007) [#2]
Use a For..Next loop and the Mid$() command.


Rob Farley(Posted 2007) [#3]
Indeed, to expand on that

t$ = "Hello my name is Earl"
for n=1 to len(t)
write mid(t,n,1)
delay 100
next
waitkey


Yo! Wazzup?(Posted 2007) [#4]
Thanks, works now.