Created
December 6, 2014 20:31
-
-
Save callil/291e07223fea53378c11 to your computer and use it in GitHub Desktop.
vid_example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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