0

I am working on roku using Scene Graph. I want disable options(asterisk) button functionality when video playing. Thank you.

Vijay Kumar
  • 141
  • 1
  • 13
  • Seen also at https://forums.roku.com/viewtopic.php?f=34&t=96315 - but give it a week or two for response. – Nas Banov Sep 07 '16 at 22:07

1 Answers1

2

According to the documentations the video player will ALWAYS have the options button functionality when in full screen,

"The one exception is the closed-caption dialog, which always appears when the video is playing fullscreen."

from: https://sdkdocs.roku.com/display/sdkdoc/Video

What I did is actually set the video to be 1px less than full screen (e,g 1280 x 719), and then I was able to capture and override the options key functionality. It might be possible to add a 1px transparent rectangle on the video instead.

Eladit
  • 168
  • 1
  • 2
  • 9