
October 31st, 2012, 11:04 PM
|
|
Registered User
|
|
Join Date: Nov 2011
Posts: 31
Time spent in forums: 5 h 5 m 21 sec
Reputation Power: 0
|
|
|
Cannot get flowplayer Multiple players.
Hi
I have flowplayer setup on my computer.
It plays files on Localhost and I have all the files on the localhost folders.
When I try to get multiple players on one page I only get 1 instance of the player and the other is ignored completely.
This happens in all browsers.
This is what I have, any ideas would be appreciated.
There is also something going on with the <script> tag in the head, I cant work out why it is not closed?
Code:
<!DOCTYPE HTML>
<html>
<head>
<title>video</title>
<script src="flowplayer/flowplayer-3.2.11.min.js"></script>
<body>
<a href="http://localhost/vids/intro.flv"
style="display:block;width:425px;height:300px;"
id="player">
</a>
<a href="http://localhost/vids/tools.flv"
style="display:block;width:425px;height:300px;"
id="player">
</a>
<script language="JavaScript">
flowplayer("player", "flowplayer/flowplayer-3.2.15.swf",
{clip:{autoPlay:false}});
</script>
</body>
</html>
|