I noticed that the Simple Grid Screen Demonstration App (SimpleGrid.brs) has the "Sub Main ()" like my source file "appMain.brs" but different body code:
SimpleGrid.brs
Sub Main()
'initialize theme attributes like titles, logos and overhang color
initTheme()
gridstyle = "Flat-Movie"
'set to go, time to get started
while gridstyle <> ""
print "starting grid style= ";gridstyle
screen=preShowGridScreen(gridstyle)
gridstyle = showGridScreen(screen, gridstyle)
end while
End Sub
appMain.brs
Sub Main()
'initialize theme attributes like titles, logos and overhang color
initTheme()
'prepare the screen for display and get ready to begin
screen=preShowHomeScreen("", "")
if screen=invalid then
print "unexpected error in preShowHomeScreen"
return
end if
'set to go, time to get started
showHomeScreen(screen)
End Sub
Do I merge certain code from SimpleGrid.brs into my source file appMain.brs? Thanks again for responding