Yeah, I think understand the code. That being said, if I am not mistaken isn't this on the wrong screen to bypass the Category page? Shouldn't we actually be implementing similar code on appHomeScreen.brs? This was the area I was expecting to add code. Prior to screen.Show() being called...
Function showHomeScreen(screen) As Integer
if validateParam(screen, "roPosterScreen", "showHomeScreen") = false return -1
initCategoryList()
screen.SetContentList(m.Categories.Kids)
screen.SetFocusedListItem(3)
screen.Show()
Maybe I am not understanding the flow properly, but isn't appPosterScreen showing the videos FROM a selected category so that code doesn't even fire until a category is selected? I am trying to skip the category selection page and jump right to the associated videos for a category.