xfan10
(xfan10)
November 12, 2016, 6:04am
1
Im trying to build a kiosk page with videos that people can navigate with an apple remote. but I don’t know how to control the video playback with the remote which I can program to any hotkey. Are there keyboard shorts cuts for pause and play?
Davirus
(David Guillermo Escalante Trinidad)
November 13, 2016, 4:22pm
2
If you use youtube embebed videos, the standard “k” button works, not sure about the Apple Remote but I bet it should work as well.
Example (click on “ver video” button)
http://gsgpetroleum.businesscatalyst.com/hype/heuristic/#nosotros
Daniel
November 14, 2016, 1:05pm
3
This might help you get started:
To navigate between scenes by pressing the Left and Right arrow keys, add the following JavaScript to the Head of your document. You can edit the contents of the … of your exported .html file by clicking on 'Edit HTML Head' in the Document Inspector.
If you just want to use this function on a single scene, run this code to run ‘on scene load’:
document.onkeydown = checkKey;
function checkKey(e) {
e = e || window.event;
if (e.keyCode == '39') {
// right arrow
hypeDocu…
Here's how to access 'start' or 'pause' actions for videos:
If you’re just starting out with Video in Tumult Hype, please read our video documentation
When you drag a video into Hype, it creates a Video element controlled by Hype. You can set whether you wish to show controls, whether you want the video to autoplay, and even if you want the video muted. All controls for these types of videos exist on the video element itself (a rectangle). To create controls outside of the element keep reading:
By default, play and pause buttons (and their design) ar…
I'm not clear what you mean by 'Apple Remote'?