|
Seek the player to a given position in seconds Function: /** *Seeks to a given position in seconds * *@param time A given value in seconds */ function seek(time); Example:
//Initialize the interface
player = new JarisFLVPlayer("Id_Of_Player_Object");
//Start playing the video
player.play();
//Seek 30 seconds
player.seek(30);
|