sudo97
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2017
06:39 AM
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?
This code below doesn't help
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
1 REPLY 1
destruk
Streaming Star
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2017
07:41 AM
Re: Fullscreen Video Menu
Set the video playback size so it isn't fullscreen - something like 1920x1079. (tested, works)