This is where I placed it
Function refreshShowDetail(screen As Object, showList As Object, showIndex as Integer) As Integer
print "refreshShowDetail -------------------------->appDetailScreen"
if validateParam(screen, "roSpringboardScreen", "refreshShowDetail") = false return -1
if validateParam(showList, "roArray", "refreshShowDetail") = false return -1
show = showList[showIndex]
'Uncomment this statement to dump the details for each show
'PrintAA(show)
screen.ClearButtons()
'screen.AddButton(1, "resume playing")
screen.AddButton(1, "play ")
screen.setstaticratingenabled(false)
screen.SetContent(show)
screen.Show()
End Function