Advertisement
Alawi1992

Untitled

Sep 5th, 2015
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. setTimeout(function(){
  2. alert("start");
  3. if ($f().isLoaded()) {
  4.     alert("t");
  5.  
  6.   $f().onBegin(function () {
  7.     alert('pointssss3');
  8.     //$f("flowplayer").getClip().fullDuration
  9.     $f().onCuepoint([3000], function (clip, point) {
  10.       alert(point);
  11.     });
  12.   });
  13. } else {
  14.   alert("f");
  15.     $f().load(function () {
  16.     alert('point3');
  17.     //$f("flowplayer").getClip().fullDuration
  18.     $f().onCuepoint([3000], function (clip, point) {
  19.       alert(point);
  20.     });
  21.   });
  22. }
  23. alert("finito");
  24. }, 3000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement