|
Function that checks if the player is buffering. Function: /** *To check if the player is buffering * *@return integer 1 for true and 0 for false */ function isBuffering(); Example:
//Initialize the interface
player = new JarisFLVPlayer("Id_Of_Player_Object");
//Store the buffering status on a variable
is_buffering = player.isBuffering();
|