
-----------------------------------
Alex C.
Fri Jan 20, 2012 9:26 am

Can Font.Draw delay each letter?
-----------------------------------
Hi, I would like to use custom fonts in my program, but I also would like to delay typing each letter. Any idea how to do so?

-----------------------------------
Insectoid
Fri Jan 20, 2012 9:38 am

RE:Can Font.Draw delay each letter?
-----------------------------------
[code]
loop
    font.draw ("one_character")
    delay (10)
end loop
[/code]

-----------------------------------
Alex C.
Fri Jan 20, 2012 9:41 am

RE:Can Font.Draw delay each letter?
-----------------------------------
....so there isn't an efficient way to  do that is there... :(

-----------------------------------
Insectoid
Fri Jan 20, 2012 9:43 am

RE:Can Font.Draw delay each letter?
-----------------------------------
That IS an efficient way. If by 'efficient' you mean 'pre-existing command' then no.

-----------------------------------
Alex C.
Fri Jan 20, 2012 12:33 pm

RE:Can Font.Draw delay each letter?
-----------------------------------
alright, thank you
