This is a message.

Forum user: thunder

Basic information

Registered Nov 23, 2008
Last login Mar 15, 2009
Forum posts 2
Direct URL http://www.flowplayer.org/forum/users/6485

Latest forum posts

Posts:

Registered:

» IE7 objectName_api is undefined error loop

Posted: Mar 13, 2009

I have exactly the same error, and dont know, what I could do. If you solve this problem, please leave me a message. In firefox, it also works here.

__flash__addCallback(player_api, "fp_getVersion");
try { player_api.SetReturnValue(__flash__toXML(self.location.href.toString()) ); } catch (e) { player_api.SetReturnValue("<undefined/>"); }

regards
hermann.

Posts:

Registered:

Playing flv file doesnt work

Posted: Nov 23, 2008

Hi

I have a question: why does this code not play the file?
I have all files necessary at the form:
What is wrong there?


<!-- include flowplayer JavaScript file -->
<pre>
<script src="flowplayer-3.0.0-rc5.min.js"></script>	
<script src="flowplayer-3.0.0-rc5.js"></script>	
<script src="flowplayer-3.0.0-rc5.pack.js"></script>	

<!--  install Flowplayer inside previous anchor tag -->
<script type="text/javascript">
$f("player", "flowplayer.3.0.0-rc4.swf", 
{
    clip: 
    {         
        url: 
'http://blip.tv/file/get/KimAronson-TwentySeconds1318.flv'
    }
    
}
);
</script>

<script type="text/javascript">
function startplay(file)
{
    $f("player", "flowplayer-3.0.0-rc4.swf", 
"http://blip.tv/file/get/KimAronson-TwentySeconds1318.flv"); 
    $f(0).load(); 
    $f("player").play();
}
</script>    
    
    </div>
    <asp:Button ID="Button1" runat="server" Text="Button" OnClientClick='startplay();' ></asp>
    
<!--  setup player with standard HTML syntax -->
<div id="player">
</div>
    
    <asp:PlaceHolder ID="PlaceHolder1" runat="server"></asp:PlaceHolder>
----------------------