pause video when ok button is pressed
This commit is contained in:
parent
75eee67913
commit
9277bf0556
|
@ -222,7 +222,12 @@ end sub
|
||||||
|
|
||||||
function onKeyEvent(key as string, press as boolean) as boolean
|
function onKeyEvent(key as string, press as boolean) as boolean
|
||||||
|
|
||||||
if key = "OK" and m.nextEpisodeButton.hasfocus() and not m.top.trickPlayBar.visible
|
' don't do anything if trick play bar is visible
|
||||||
|
if m.top.trickPlayBar.visible
|
||||||
|
return false
|
||||||
|
end if
|
||||||
|
|
||||||
|
if key = "OK" and m.nextEpisodeButton.hasfocus()
|
||||||
m.top.state = "finished"
|
m.top.state = "finished"
|
||||||
hideNextEpisodeButton()
|
hideNextEpisodeButton()
|
||||||
return true
|
return true
|
||||||
|
@ -243,6 +248,16 @@ function onKeyEvent(key as string, press as boolean) as boolean
|
||||||
else if key = "up"
|
else if key = "up"
|
||||||
m.top.selectPlaybackInfoPressed = true
|
m.top.selectPlaybackInfoPressed = true
|
||||||
return true
|
return true
|
||||||
|
else if key = "OK"
|
||||||
|
print("OK pressed")
|
||||||
|
' OK will play/pause depending on current state
|
||||||
|
if m.top.state = "paused"
|
||||||
|
m.top.control = "resume"
|
||||||
|
return true
|
||||||
|
else if m.top.state = "playing"
|
||||||
|
m.top.control = "pause"
|
||||||
|
return true
|
||||||
|
end if
|
||||||
end if
|
end if
|
||||||
|
|
||||||
return false
|
return false
|
||||||
|
|
Loading…
Reference in New Issue
Block a user