Dude, most people in the SB community do things solo or just dream about it. I can give you tips on things, like putting things on the touch screen.
Do XSCREEN 2 (or 3 for 3D, XSCREEN gives you access to the touch screen)
And then when you want to edit the touch screen, do
DISPLAY 1
And when you want to change back to the top screen, do
DISPLAY 0
Also, you can make a more professional DIALOG box that is custom made with XSCREEN, the DEF codeblock and some good coding. I'll upload an example in a minute.
Okay, you need to set up an array the right way to mak this work:
DIM OUTCOME[<amount of elements>]
OUTCOME[0]="String0"
OUTCOME[1]="String1"
OUTCOME[2]="String2"
And then...
FOR Y=0 TO LEN(OUTCOME[]) #You don't need step if it's only 1 in SmileBASIC
#blah blah
?OUTCOME[Y] #[]is the array param thingy, you put the element array coordinate you want
NEXT #Definitely need this, lol