Hi,
I'm having an issue setting the focus of an item in an list for the poster screen, which uses the filter banner for seasons. Basically, I'm trying to set the season (filter banner) as the current season using poster.SetFocusedList(val)...with val being an integer. This is fine, the season gets set. However, when I then try to set the current episode (poster.SetFocusedListItem(val), it defaults to the third episode in the list, where I may want it to default to say the 6th episode in the list (i.e. poster.SetFocusedListItem(5). If I set it to 0, it works and sets it to the first episode.
For example, the following should be set to season 4, episode 5, however, it sets it to season 4 episode 3
poster.SetFocusedList(3)
poster.SetFocusedListItem(4)
The poster screen content list is an array object. Each index contains an array of episodes. Not sure if the data type is incorrect.
Thanks,
Kevin