You would need to create a custom button that does two things:
- Plays the Vimeo video using their API: https://developer.vimeo.com - Please see: Play Vimeo Video with Javascript - #3 by MarkHunte
- Starts the timeline using Hype's api. Something like:
hypeDocument.startTimelineNamed('Main Timeline', hypeDocument.kDirectionForward);
You can usually get a video play automatically without user intervention, but browsers are disallowing the unprompted playback of videos with audio. So if you mute your videos and set them to autoplay, they should play (unless the user has set a low bandwidth setting on their mobile browser).
So you would use these properties to get a video to play automatically and muted if it was a video element in Hype:
For vimeo, you would just need to make sure it is muted if you'd like to autoplay it.