Skip to content

Instantly share code, notes, and snippets.

@callil
Created December 6, 2014 20:31
Show Gist options
  • Save callil/291e07223fea53378c11 to your computer and use it in GitHub Desktop.
Save callil/291e07223fea53378c11 to your computer and use it in GitHub Desktop.
vid_example
vid = new VideoLayer
video:"https://dl.dropboxusercontent.com/u/106558909/04/psd_LSC.framer/polar_ravit.mp4"
x: 0
y: 0
width: 1366
height: 750
vid.player.loop = true
vid.player.autoplay = true
vid.on Events.Click, ->
if vid.player.paused == true
vid.player.play()
else
vid.player.pause()
print "paused"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment