take alook at this and see what you think
rem text positioner
rem variables
ty=20
n=0
rem array for storing text positions
dim text_pos$(25,3)
do
rem if the mouse is clicked position cursor there and allow input
if mouseclick()=1
x=mousex()
y=mousey()
set cursor x,y
ty=ty+20
rem add new entry in cursor position list
center text 50,ty,str$(x)+","+str$(y)
rem allow input
input message$
rem store text positions and string in array
text_pos$(n,1)=str$(x)
text_pos$(n,2)=str$(y)
text_pos$(n,3)=message$
n=n+1
endif
rem if "s" is pressed save the array as textpos
if keystate(31)=1
save array "textpos",text_pos$(0)
center text 320,240,"Array Saved!"
endif
rem positions list title
center text 70,20,"CURSOR POSITIONS"
loop
it lets you click where you want text to be placed and lets you input a string at the coords it also allows you to save this info in an array which can then be used with code like this
rem declare array
dim text_pos$(25,3)
rem load array
load array "textpos",text_pos$(0)
rem position text where its supposed to be
for t=0 to 25
set cursor val(text_pos$(t,1)),val(text_pos$(t,2))
print text_pos$(t,3)
next t
this will allow you to extract the data from the array and put it onto the screen.
hope it helps
*edit sorry didn't refresh my browser before posting you can try it anyway?
ARE YOU A 3D MODELER??? IF SO WE NEED YOU!!!
EMAIL mynameisnoneofyourbuisness@hotmail.com to work on the new Star Strike project!!!