Is it possible for a video?
TIA
Is it possible for a video?
TIA
screen.SetStaticRatingEnabled(False)
Where does one paste “screen.SetStaticRatingEnabled(False)”? what brs file?
Whichever brs file has your details screen in it. Before you call Show() but after the screen object is created.
“pigeonx” wrote:
Where does one paste “screen.SetStaticRatingEnabled(False)”? what brs file?
In the videoplayer example, it’s in the appDetailScreen.brs file, right at the top:
I did this, and it worked:
Function preShowDetailScreen(breadA=invalid, breadB=invalid) As Object
port=CreateObject("roMessagePort")
screen = CreateObject("roSpringboardScreen")
screen.SetDescriptionStyle("video")
screen.SetMessagePort(port)
screen.SetStaticRatingEnabled(False)
if breadA<>invalid and breadB<>invalid then
screen.SetBreadcrumbText(breadA, breadB)
end if
return screen
End Function