Name is required.
Email address is required.
Invalid email address
Answer is required.
Exceeding max length of 5KB

logo not displaying


I can't for the life of me get the logo function to work. Pro license purchased and correct. License key has been changed in this example. Here's my embed code.

<head>

<script type="text/javascript" src="jwplayer.js" ></script>
<script type="text/javascript">jwplayer.key="XXXXXXXXXXXXXXXXXXX";</script>


</head>
<body class="bg1" onload="sendEvent('playitem', 8)">
</body>
<div id="myElement">Loading the player ...</div>


<script type="text/javascript">
jwplayer("myElement").setup({
file: "http://www.armchairtourist.com/roku_db/flowplayer.pl",
height: 320,
image: "http://www.armchairtourist.com/roku_db//watermark_hd.png",
logo: {
file: 'http://www.armchairtourist.com/roku_db//watermark_hd.png',
link: 'http://armchairtourist.com'
},
width: 480,
type: "mp4",
autostart: "true",
autoplay: "true",
repeat: "true",
setFullscreen: "true",
height: 320
});
</script>

6 Community Answers

JW Player

User  
0 rated :

Player can be seen at http://www.armchairtourist.com/roku_db/video_player/jwplayer/start.html

JW Player

User  
0 rated :

You're feeding it a "logo" that's bigger than the player itself. The logo image file is a whopping 1280x720px. And then, it's a faint "watermark" type image, which is going to be virtually invisible when placed on top of a video.

And why are you trying to invent new attributes for JW Player? Where did you get *setFullscreen* and *autoplay*? If it's not listed in the embedding guide, you can't just will it into existence:

http://www.longtailvideo.com/support/jw-player/28839/embedding-the-player

Your page isn't valid HTML. It has no DOCTYPE declaration, it has a </body> tag in the wrong place, and no <html> or </html> tag. You really can't just vomit a bunch of tags onto a page, and expect things to work properly.

Here's an example of a working logo:

http://misterneutron.com/JW6videoLogo/

JW Player

User  
0 rated :

Hey, thanks for the input, however you need to work on your intellectual supremacy issues.

Ethan Feldman

JW Player Support Agent  
0 rated :

The logo is indeed to large, you should shrink it down.

JW Player

User  
0 rated :

M. Osten, you can't realistically begin to debug a problem until you have a page that will at least pass validation. You need to work on your coding skills.

If you learn that lesson, I don't give a damn what you think about me.

Ethan Feldman

JW Player Support Agent  
0 rated :

I would simply make the logo smaller for starters.

This question has received the maximum number of answers.