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