Well I realised that the entry$() command could be made a little simpler to fellow newbies. So I made a thing to position input.
NOTE: This is a BETA for a function pack I plan to release called AthenaBASIC for DBP.
How it works,
X and Y is your axis to position your input.
The mess$ parameter is a string for your input message. i.e.("Name?")
Typer is like the little line that appears after you type a letter. So, it could be that little line or anything you want it to be.
Garuntee (sp$):
This code works without any bugs what so ever.
Function:
function inputxy(x#,y#,mess$,typer$)
while escapekey()=0
cls
text x#,y#,mess$+entry$(1)+typer$
if returnkey()=1
clear entry buffer
endif
if typer$="" then typer$="|"
endwhile
endfunction
Example:
inputxy(300,300,"Name: ","|")
function inputxy(x#,y#,mess$,typer$)
while escapekey()=0
cls
text x#,y#,mess$+entry$(1)+typer$
if returnkey()=1
clear entry buffer
endif
if typer$="" then typer$="|"
endwhile
endfunction
Formerely Cool Guy Jordan