Hi again kjpolker.
No, no, no. You didn't read my last comment properly.
For Javascript you have to use the code I posted before.
For CSS you have to use the code I posted before.
Now you mixed them all up.
Unfortunately I don't have time in the moment, I will answer you later more explicitly, so for now shortly.
In the head section has to be the source of the Javascript like this:
<script language="JavaScript"
src="ThePathToYour/flowplayer-3.1.4.min.js">
</script>
All CSS files should be in an external CSS file with the ending .css and then you refer to it also in the head section like this:
<link rel="stylesheet" type="text/css"
href="PathToYourCSSFile/nameOfTheFile.css"/>
or you put the whole CSS File in the head section like this:
<style type="text/CSS">
your CSS
</style>
Then try to use my code for the calling of the player in the body section. That means your a tag where the video file is linked and than the Javascript code I posted in my previous comment.
I am not quite sure that you can style the player with some a tag CSS. I think that has to be done in the Javascript section I just told you about. Here I give you an example of the code I used, just change the colours and the size as you like:
<a href="/Video/blablabla.flv" style="display:block; width:auto; height:360px;"
class="player"> </a>
<script language="JavaScript">
$f(".player", { src: '/flowplayer/flowplayer-3.1.5.swf', cachebusting: true },
{ clip: { autoPlay: false, autoBuffering: false},
plugins: { controls: {tooltips: {buttons: true},
tooltipColor: '#1FADFF'}, { autoHide: 'always',
hideDelay: 3000, backgroundColor: '#0086D3',
bufferColor: '#555555', bufferGradient: 'low',
buttonColor: '#555555', buttonOverColor: '#6E6E6E',
sliderColor: '#003452', sliderGradient: [0.3, 0.0, 0.3],
volumeSliderColor: '#003452', volumeSliderGradient: [0.3, 0.0, 0.3]}},
canvas: {backgroundColor: '#0086D3',
backgroundGradient: [0.6, 0.0], border: '3px solid #0086D3'}
}); </script>
The best way to do this is to copy the code and then slowly change things while looking at them in a browser.
I didn't yet figure out how to post an image on the canvas of the player before it starts but you find some good information on that on the flowplayer website.
I'll write you more later on.
Be sure to use the right forms. There is always an opening and a closing tag and you must use the specs for CSS and Javascript.
The specs are text/javascript (or language="javascript") or text/CSS as shown above.
Good luck so far.
Anodyne
P.S. Btw. I used class=player instead of an ID=player as you see above. With this you can use the same code for all players only by changing the file path. With id you must name every player differently (e.g. player1, player2 etc.)
Some helpful sites:
http://www.w3.org/TR/REC-html40/ or if you need XHTML:
http://www.w3.org/TR/xhtml1/ http://www.w3.org/Style/CSS/learning