Main Menu

simple text input

Started by new-be-new, June 24, 2005, 08:45:05 AM

Previous topic - Next topic

new-be-new

Hi!

As i said in my previous post, "help me" is now oficially starting! :)

i have been looking in help file and here in forum but i didnt found any command that enables siple text input like INPUT or similar.
I found inkey$ but i think it is for one character.


Do
Cls 0
char$=Inkey$()
Text$=text$+Char$
Print "You typed:"+Text$
Sync
Loop


is there a command for text input like: INPUT name$

thanx
NON BENE PRO TOTO LIBERTAS VENDITUR AURO!!!
Dubrovnik

kevin

#1
There's no built in 'old school' Input in PB, mainly because the command would halt the app.  No very useful for games stuff.  

To counter that, there's a couple functions in the source forum to handle real time input within a loop...

-> Extended Custom Input