You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

Forum user: birdie

Basic information

Registered Nov 16, 2009
Last login Apr 9, 2011
Forum posts 5
Direct URL http://www.flowplayer.org/forum/users/18847

Latest forum posts

Posts:

Registered:

» » Adding commecial key to player in overlay

Posted: Apr 11, 2011

Hi, thanks for getting back to me.

I've made those changes and now the logo is working correctly, but it's still showing the Flowplayer logo while the video is loading.

Here is the revised code:


$(function () {
  var player = $f("player", "/scripts/flowplayer.commercial-3.2.7.swf", {
    // player config into 3rd argument of the flowplayer function
    key: '#$xxxxxxxxxxx',
    logo: {
      url: '/img/sonru-logo-video.png',
		fullscreenOnly: false,
		displayTime: 10
    },
    plugins: {
      controls: {
       url: '/scripts/flowplayer.controls-3.2.5.swf',
			
			backgroundColor: "#FFFFFF",
			backgroundGradient: "none",
			sliderColor: '#FFFFFF',
			sliderBorder: '1.5px solid rgba(160,160,160,0.7)',
			volumeSliderColor: '#FFFFFF',
			volumeBorder: '1.5px solid rgba(160,160,160,0.7)',

			timeColor: '#ffffff',
			durationColor: '#535353',

			tooltipColor: 'rgba(255, 255, 255, 0.7)',
			tooltipTextColor: '#000000'
      }
    }
  });

  $("a[rel]").overlay({
    mask: "#000000",
    effect: "apple",
    onLoad: function () {
      player.load();
    },
    onClose: function () {
      player.unload();
    }
  }); 
});


Posts:

Registered:

» Adding commecial key to player in overlay

Posted: Apr 9, 2011

I urgently need to get these videos up on our site, can someone from Flowplayer respond please?

Posts:

Registered:

Adding commecial key to player in overlay

Posted: Apr 7, 2011

Hi, I've looked on the forums but can't find a definitive answer to this, I'm sure it's very straightforward but I keep getting errors.

I have a free version of the player working in an overlay. Now I have purchased a commercial copy to remove the Flowplayer logo, but it seems to just default to the free version. Here is my code:

<script language="JavaScript">

$(function() {

	// install flowplayer into flowplayer container
	var player = $f("player", "/scripts/flowplayer.commercial-3.2.7.swf");
	
	// setup button action. it will fire our overlay 
	$("a[rel]").overlay({
		mask: '#000',
		// use the Apple effect for overlay
		effect: 'apple',
		plugins: {
		controls: {
			url: '/scripts/flowplayer.controls-3.2.5.swf',
			
			backgroundColor: "#FFFFFF",
			backgroundGradient: "none",
			sliderColor: '#FFFFFF',
			sliderBorder: '1.5px solid rgba(160,160,160,0.7)',
			volumeSliderColor: '#FFFFFF',
			volumeBorder: '1.5px solid rgba(160,160,160,0.7)',

			timeColor: '#ffffff',
			durationColor: '#535353',

			tooltipColor: 'rgba(255, 255, 255, 0.7)',
			tooltipTextColor: '#000000'
		},
		key: '#$xxxxxxxxxxxx',
		logo: {
		url: '/img/logo-video.png',
		fullscreenOnly: false,
		displayTime: 10
		},
	},
		
		// when overlay is opened, load our player
		onLoad: function() {
			player.load();
		},
		
		// when overlay is closed, unload our player
		onClose: function() {
			player.unload();
		}
	});
			
});

</script>

Thanks.

Posts:

Registered:

Scrollable / Navi Plugin - 2 pages, same code, different result?

Posted: Mar 15, 2010

Hi,

I have used Scrollable with the navigator plugin on a portfolio area. I have the same code on 2 pages, and on one page it's working correctly, but on the other the navigator only shows the 'active' link, and no link to scroll to the next scrollable page.

Page 1 - All ok:http://www.agtel.ie/work/Video/ireland_and_the_european_union/

Page 2 - 5th item in scrollable, but no second button on navi:http://www.agtel.ie/work/Digital/people_management_the_legal_framework/

I have double checked everything and can't see what the problem is, hopefully some fresh eyes will help. Any ideas?

Thanks,

Cormac

Posts:

Registered:

Error on line 39 jquery.tools.min.js

Posted: Nov 16, 2009

Hi, working on a local server, I get an error in Firebug on line 39:

H is undefined 39 (function(){var R=/((
...
Any ideas what the issue might be? I'm linking to:

<script src=http://cdn.jquerytools.org/1.1.2/full/jquery.tools.min.js"></script>

Thanks in advance!