So I am trying this the easy way,
Instead of creating 20 different text objects I am doing this
The problem is They do not have text numbers or names so i can not change there numbers. there all number 1
all I need is for each text to be a different number, they do nothing but sit there.
x_pos=9
y_pos=6
for x=1 to 20
level_select_text=createtext("1")
SetTextSize(level_select_text,10)
SettextPosition(level_select_text,x_pos,y_pos)
FixTextToScreen ( level_select_text, 1 )
SetTextColorAlpha ( level_select_text, 255 )
SetTextFontImage(level_select_text,font)
SetTextDepth(level_select_text,0)
SetTextVisible(level_select_text,1)
inc x_pos,20
if x=5
x_pos=9
inc y_pos,25
endif
if x=10
x_pos=9
inc y_pos,25
endif
if x=15
x_pos=9
inc y_pos,25
endif
next x