I'll try to repose the question for clarity. I'm using the "Multiple players on a page" configuration:
http://flowplayer.org/demos/installation/multiple-players.html
but I need each video to have a different linkUrl. The videos are placed with the code:
but there's nowhere there to specify the linkUrl. Does that mean I have to do this some other way, eg. by doing something like this?
http://flowplayer.org/demos/installation/multiple-players.html
but I need each video to have a different linkUrl. The videos are placed with the code:
<a class="myPlayer" href="http://example.com/clips/small/62308.mp4">
<img src="http://example.com/thumbs/small/62308.jpg" alt="Video clip 62308" />
</a>
but there's nowhere there to specify the linkUrl. Does that mean I have to do this some other way, eg. by doing something like this?
<a class="myPlayer_1" href="http://example.com/clips/small/1.mp4">
<img src="http://example.com/thumbs/small/1.jpg" alt="Video clip 1" />
</a>
<a class="myPlayer_2" href="http://example.com/clips/small/2.mp4">
<img src="http://example.com/thumbs/small/2.jpg" alt="Video clip 2" />
</a>