Roku Developer Program

Join our online forum to talk to Roku developers and fellow channel creators. Ask questions, share tips with the community, and find helpful resources.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
sudo97
Visitor

Fullscreen Video Menu

When the Video-node is fullscreen "options" key-press causes audio/subtitle track-menu appear. What if I don't want it to appear? I want to configure subtitles and audiotracks in my code. How can I prevent this?

function onKeyEvent(key as string, press as boolean) as boolean
    handled = false
    if(press)
       if(key = "options")
           handled = true
        end if
    end if
    return handled
end function


This code below doesn't help
0 Kudos
1 REPLY 1
destruk
Binge Watcher

Re: Fullscreen Video Menu

Set the video playback size so it isn't fullscreen - something like 1920x1079. (tested, works)
0 Kudos