<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title> JC Player Forum</title>
<description></description><link>http://www.jcplayer.com/forum/index.php</link><lastBuildDate>Wed, 08 Sep 2010 06:52:22 -0500</lastBuildDate>
<generator>Phorum 5.2.7</generator>
<item>
<guid>http://www.jcplayer.com/forum/read.php?5,691,693#msg-693</guid>
<title>Re: Trouble with FullScreen mode mixed to Shadowbox</title><link>http://www.jcplayer.com/forum/read.php?5,691,693#msg-693</link><description><![CDATA[ From what I understand this matter was discussed on a support ticket.]]></description>
<dc:creator>kneo</dc:creator>
<category>Discussions &amp; Support</category><pubDate>Mon, 06 Sep 2010 06:05:25 -0500</pubDate></item>
<item>
<guid>http://www.jcplayer.com/forum/read.php?5,691,691#msg-691</guid>
<title>Trouble with FullScreen mode mixed to Shadowbox</title><link>http://www.jcplayer.com/forum/read.php?5,691,691#msg-691</link><description><![CDATA[ Hi everybody,<br /><br />My english is not very good (in fact I speak french). Also I have a trouble with the fullscreen mode.<br />I decided to take the html version of JC player because you have the all code and the skinnable version is not so skinnable as i would like. This player is putting in a Shadowbox.js (like Lightbox)<br />Here are the url website : <a rel="nofollow" href="http://www.sogam.ch/sogam_2010/index.php?page=video">http://www.sogam.ch/sogam_2010/index.php?page=video</a><br />I try only in the last video called BipBip &amp; Coyotte<br /><br />Here is the code of the player<br /><br /><pre class="bbcode">

//The code bellow allows the JCPlayer to be configured 
//from the html container using FlashVars.
//
//Sequence 1: Stage setup
//Importing classes and setting the player size using the stage/swf dimensions
/*stage.addEventListener(Event.RESIZE,stageResizeHandler);*/
jcplayer.width = stage.stageWidth;
jcplayer.height = stage.stageHeight;
/*function stageResizeHandler(evt:Event):void{
	jcplayer.width = stage.stageWidth;
	jcplayer.height = stage.stageHeight;
}*/


//Sequence 2: Defining params
//ParameterList - here we keep all settable parameters
var paramList:Array = [&quot;startPhotoSource&quot;,&quot;videoURL&quot;, &quot;loop&quot;,&quot;autoPlay&quot;, &quot;scaleMode&quot;, &quot;volume&quot;, &quot;bufferTime&quot;, &quot;backgroundColor1&quot;,&quot;movieBackgroundColor&quot;, &quot;backgroundColor2&quot;, &quot;highlightColor&quot;, &quot;inkColor&quot;, &quot;playButton&quot;, &quot;timeBar&quot;, &quot;seekBar&quot;, &quot;volumeButton&quot;, &quot;fullScreenButton&quot;, &quot;skin&quot;,&quot;smoothing&quot;,&quot;autoHide&quot;,&quot;autoHideFullScreen&quot;,&quot;offsetY&quot;,&quot;offsetYFullScreen&quot;,&quot;margins&quot;,&quot;marginsFullScreen&quot;];
//ParameterType - here we keep the type for each parameter.
var paramType:Array = [&quot;String&quot;,&quot;String&quot;, &quot;Boolean&quot;,&quot;Boolean&quot;, &quot;String&quot;, &quot;Number&quot;, &quot;Number&quot;, &quot;Number&quot;,&quot;Number&quot;, &quot;Number&quot;, &quot;Number&quot;, &quot;Number&quot;, &quot;Boolean&quot;, &quot;Boolean&quot;, &quot;Boolean&quot;, &quot;Boolean&quot;, &quot;Boolean&quot;, &quot;String&quot;,&quot;String&quot;,&quot;Boolean&quot;,&quot;Boolean&quot;,&quot;Number&quot;,&quot;Number&quot;,&quot;Number&quot;,&quot;Number&quot;];
// Sequence 3: Parsing params
//This sequence updates the component params from FlashVars through the &quot;loaderInfo&quot; object

var l = paramList.length;
var numberValue:String;
for (var i =0;i&lt;l;i++){
	if (root.loaderInfo.parameters[paramList[i]]){
		switch (paramType[i]){
			case &quot;Boolean&quot;:
				if (String(root.loaderInfo.parameters[paramList[i]])==&quot;false&quot;){
					jcplayer[paramList[i]] = false;
				}else{
					jcplayer[paramList[i]] = true;					
				}
			break;
			case &quot;Number&quot;:
				numberValue = root.loaderInfo.parameters[paramList[i]] 
				if ((paramList[i]==&quot;backgroundColor1&quot;)||(paramList[i]==&quot;backgroundColor2&quot;)||(paramList[i]==&quot;movieBackgroundColor&quot;)||(paramList[i]==&quot;highlightColor&quot;)||(paramList[i]==&quot;inkColor&quot;)){
					if (root.loaderInfo.parameters[paramList[i]].indexOf(&quot;#&quot;)==0){
						numberValue= &quot;0x&quot;+numberValue.substr(1,numberValue.length-1);
					}
				}
				jcplayer[paramList[i]] = Number(numberValue);
			break;
			case &quot;String&quot;:
				jcplayer[paramList[i]] = String(root.loaderInfo.parameters[paramList[i]]);
			break
		}
	}
}</pre><br />And here the code to skin it<br /><br /><pre class="bbcode">
jcplayer.videoURL = &quot;video/bipbipcoyotte.flv&quot;;
jcplayer.highlightColor = 0xc60086;
jcplayer.backgroundColor1 = 0x000000;

jcplayer.inkColor = 0x5f5f5f;
jcplayer.autoPlay = false;

jcplayer.autoHide = true;
jcplayer.offsetY = 45;
jcplayer.margins = 5;
jcplayer.marginsFullScreen = 70;
jcplayer.offsetYFullScreen = 45;
jcplayer.movieBackgroundColor = 0xffffff;

jcplayer.width = 360;
jcplayer.height = 288;
var myBufferLength:Number = jcplayer.bufferLength;

this.addChild(jcplayer);</pre><br />The player is okay but the trouble is when you pass to the fullscreen mode to the normal mode. The video goes up at the top of de div. The video must stay at the same place but this is not the case. (also the same place is in the middle of the div)<br /><br />Thanks for your answer]]></description>
<dc:creator>user430625</dc:creator>
<category>Discussions &amp; Support</category><pubDate>Fri, 03 Sep 2010 06:09:46 -0500</pubDate></item>
<item>
<guid>http://www.jcplayer.com/forum/read.php?5,583,689#msg-689</guid>
<title>Re: Removing JCPLayer Instance with AS3</title><link>http://www.jcplayer.com/forum/read.php?5,583,689#msg-689</link><description><![CDATA[ This seems like an incredibly easy fix: add an Event.REMOVED_FROM_STAGE listener to kill the timer and/or all the event listeners. Shouldn't take more than a couple of minutes really.]]></description>
<dc:creator>bartpop</dc:creator>
<category>Discussions &amp; Support</category><pubDate>Sat, 07 Aug 2010 01:57:59 -0500</pubDate></item>
<item>
<guid>http://www.jcplayer.com/forum/read.php?5,681,687#msg-687</guid>
<title>Re: Jcplayer + jcplaylist + as3</title><link>http://www.jcplayer.com/forum/read.php?5,681,687#msg-687</link><description><![CDATA[ Did you try to use the stop method?<br />If still doesn't work, then I suggest that you should open a ticket and send the file you are working on so that we can take a look.<br /><br />Adrian]]></description>
<dc:creator>kneo</dc:creator>
<category>Discussions &amp; Support</category><pubDate>Thu, 05 Aug 2010 09:33:47 -0500</pubDate></item>
<item>
<guid>http://www.jcplayer.com/forum/read.php?5,681,685#msg-685</guid>
<title>Re: Jcplayer + jcplaylist + as3</title><link>http://www.jcplayer.com/forum/read.php?5,681,685#msg-685</link><description><![CDATA[ no only myJCPlayer.stop(); and that occured an error]]></description>
<dc:creator>user393481</dc:creator>
<category>Discussions &amp; Support</category><pubDate>Sun, 01 Aug 2010 23:19:23 -0500</pubDate></item>
<item>
<guid>http://www.jcplayer.com/forum/read.php?5,681,683#msg-683</guid>
<title>Re: Jcplayer + jcplaylist + as3</title><link>http://www.jcplayer.com/forum/read.php?5,681,683#msg-683</link><description><![CDATA[ Did you try to use close method on the jcplayer ( eg myJCPlayer.close() )?<br /><br />close method: Closes the connection. The download/streaming itself is stopped<br />and it will not resume on play.]]></description>
<dc:creator>kneo</dc:creator>
<category>Discussions &amp; Support</category><pubDate>Mon, 26 Jul 2010 03:44:13 -0500</pubDate></item>
<item>
<guid>http://www.jcplayer.com/forum/read.php?5,681,681#msg-681</guid>
<title>Jcplayer + jcplaylist + as3</title><link>http://www.jcplayer.com/forum/read.php?5,681,681#msg-681</link><description><![CDATA[ Hi folks,<br /><br />got one question to jcplayer which i use in combination with jcplaylist. it works very well but i need to close the instance of the player if im leaving the frame where the player is. otherwise flash will crash cause every time i jump to the frame where the player is openes plus one instance.<br /><br />is there a way to handle this problem?<br /><br />hope there is any simple solution.<br /><br />deC9r]]></description>
<dc:creator>user393481</dc:creator>
<category>Discussions &amp; Support</category><pubDate>Sat, 24 Jul 2010 19:27:44 -0500</pubDate></item>
<item>
<guid>http://www.jcplayer.com/forum/read.php?5,675,679#msg-679</guid>
<title>Re: I need to access the original video's width/height</title><link>http://www.jcplayer.com/forum/read.php?5,675,679#msg-679</link><description><![CDATA[ Thank you Adrian, accessing the &quot;event.info.width/height&quot; works and it was a great help.<br />It's for desktop application, so I don't pass those values to javascript.<br />I capture the &quot;JCPlayerEvent.ON_META_DATA&quot; event and use the info values directly from actionscript:<br /><br />private function metaDataHandler(event:JCPlayerEvent) :void<br />{<br />video_player.width = event.info.width;<br />video_player.height = event.info.height;<br />}<br /><br />Best Regards,<br /><br />Daniel]]></description>
<dc:creator>danielmarcin</dc:creator>
<category>Discussions &amp; Support</category><pubDate>Tue, 13 Jul 2010 14:37:51 -0500</pubDate></item>
<item>
<guid>http://www.jcplayer.com/forum/read.php?5,675,677#msg-677</guid>
<title>Re: I need to access the original video's width/height</title><link>http://www.jcplayer.com/forum/read.php?5,675,677#msg-677</link><description><![CDATA[ Hello Daniel,<br /><br />I believe there is a way of doing that. You need to add on meta data event on JCPlayer and call a java script function that re-size your swf depending on the width and height received on metadata.<br /><br />Here is an example:<br />import JCPlayerEvent;<br />myJCPlayer.addEventListener(JCPlayerEvent.ON_META_DATA,metaDataHandler);<br />function metaDataHandler(event:JCPlayerEvent):void {<br />ExternalInterface.call(&quot;javaFunction&quot;,event.info.width,event.info.height)<br /><br />}<br />I hope this helps you.<br /><br />Adrian]]></description>
<dc:creator>kneo</dc:creator>
<category>Discussions &amp; Support</category><pubDate>Tue, 13 Jul 2010 07:33:14 -0500</pubDate></item>
<item>
<guid>http://www.jcplayer.com/forum/read.php?5,675,675#msg-675</guid>
<title>I need to access the original video's width/height</title><link>http://www.jcplayer.com/forum/read.php?5,675,675#msg-675</link><description><![CDATA[ Hello,<br />My application is connecting to the database where I have video files of different sizes.<br />Important thing is that I don't know the size of any video.<br />When I open the stream I need to read the video's &quot;width/height&quot; values, as I want my JCPlayer to adjust it's size to the one of the video.<br />How can I read them from the JCPlayer object or from the NetStream object it embeds?<br /><br />Best Regards,<br /><br />Daniel Marcin]]></description>
<dc:creator>danielmarcin</dc:creator>
<category>Discussions &amp; Support</category><pubDate>Sun, 11 Jul 2010 11:41:49 -0500</pubDate></item>
<item>
<guid>http://www.jcplayer.com/forum/read.php?5,667,673#msg-673</guid>
<title>Re: Audio but No Video?????</title><link>http://www.jcplayer.com/forum/read.php?5,667,673#msg-673</link><description><![CDATA[ azpyroguy,<br /><br />Perhaps the flv file you are using there is broken. Please try to use a different flv file and let me know if that issue persists. Thank you.]]></description>
<dc:creator>florodebat</dc:creator>
<category>Discussions &amp; Support</category><pubDate>Tue, 06 Jul 2010 03:21:52 -0500</pubDate></item>
<item>
<guid>http://www.jcplayer.com/forum/read.php?5,667,671#msg-671</guid>
<title>Re: Audio but No Video?????</title><link>http://www.jcplayer.com/forum/read.php?5,667,671#msg-671</link><description><![CDATA[ Yes, it does. This is a link to the same video but using a different player. Despite the video stopping at a little over 4 minutes, and restarting at 11 minutes (this is a separate issue), but shows that the server does support FLV mime type.<br /><br />[<a rel="nofollow" href="https://www.americansandassociation.org/pages.php?pageid=53">www.americansandassociation.org</a>]<br /><br /><br />florodebat Wrote:<br />-------------------------------------------------------<br />&gt; azpyroguy,<br />&gt;<br />&gt; Please make sure that server on which you<br />&gt; uploaded the player and the flv file is supporting<br />&gt; FLV MIME type.<br />&gt;<br />&gt; [<a rel="nofollow" href="http://it.toolbox.com/wiki/index.php/FLV_Will_Not_">it.toolbox.com</a>]<br />&gt; Load_or_Play<br />&gt;<br />&gt; Please let me know if this doesn't helped.]]></description>
<dc:creator>azpyroguy</dc:creator>
<category>Discussions &amp; Support</category><pubDate>Mon, 05 Jul 2010 11:11:07 -0500</pubDate></item>
<item>
<guid>http://www.jcplayer.com/forum/read.php?5,667,669#msg-669</guid>
<title>Re: Audio but No Video?????</title><link>http://www.jcplayer.com/forum/read.php?5,667,669#msg-669</link><description><![CDATA[ azpyroguy,<br /><br />Please make sure that server on which you uploaded the player and the flv file is supporting FLV MIME type.<br /><br />[<a rel="nofollow" href="http://it.toolbox.com/wiki/index.php/FLV_Will_Not_Load_or_Play">it.toolbox.com</a>]<br /><br />Please let me know if this doesn't helped.]]></description>
<dc:creator>florodebat</dc:creator>
<category>Discussions &amp; Support</category><pubDate>Mon, 05 Jul 2010 02:56:19 -0500</pubDate></item>
<item>
<guid>http://www.jcplayer.com/forum/read.php?5,667,667#msg-667</guid>
<title>Audio but No Video?????</title><link>http://www.jcplayer.com/forum/read.php?5,667,667#msg-667</link><description><![CDATA[ I own the master collection, and have tried for 2 days now to get the JC Player to work properly...<br /><br />I get my photo source image, and audio, but no video, plus my player icons are also not showing up (outside of the initial play button in the middle of the window), despite them them set to true/on in the parameters of the JC Player.<br /><br />I have tried this with minimal flash html embeding code , and using the flash code from the publish settings, all with same results.<br /><br />I get the same results if I play the SWF file locally on my PC, and with IE8 and FireFox.<br /><br />I see no errors in my logs for apache.<br /><br />However, if I play the linked FLV locally with a player, it works great, so I know the video is OK...<br /><br />Could it be the size of my FLV video... about 25 minutes, and 200 megs??<br /><br />The links to the video/swf is:<br /><br />[<a rel="nofollow" href="http://www.americansandassociation.org/skin1/images/asapmvnew.html">www.americansandassociation.org</a>]<br />[<a rel="nofollow" href="http://www.americansandassociation.org/skin1/images/asapmvnew.swf">www.americansandassociation.org</a>]<br /><br />And the link to the FLV video itself is:<br />[<a rel="nofollow" href="http://www.americansandassociation.org/skin1/images/asa_Medium.flv">www.americansandassociation.org</a>]<br /><br />I am at a loss here...]]></description>
<dc:creator>azpyroguy</dc:creator>
<category>Discussions &amp; Support</category><pubDate>Sat, 03 Jul 2010 11:19:40 -0500</pubDate></item>
<item>
<guid>http://www.jcplayer.com/forum/read.php?5,503,665#msg-665</guid>
<title>Re: Full screen mode</title><link>http://www.jcplayer.com/forum/read.php?5,503,665#msg-665</link><description><![CDATA[ bartpop,<br /><br />I am really sorry for misleading you all this time. It finally turned out to be a mistake on our side. The JCPlayerEvent.FULL_SCREEN event actually does not exists. It was initially included in the specs list but the project manager decided to not use it since that event would actually be identical with the stage. FullScreenEvent which seems you have already used it as mentioned above.<br />Thank you very much for bringing that issue in our attention. We will fix and update the AS documentation as soon is possible.]]></description>
<dc:creator>florodebat</dc:creator>
<category>Discussions &amp; Support</category><pubDate>Thu, 10 Jun 2010 08:40:46 -0500</pubDate></item>
<item>
<guid>http://www.jcplayer.com/forum/read.php?5,503,663#msg-663</guid>
<title>Re: Full screen mode</title><link>http://www.jcplayer.com/forum/read.php?5,503,663#msg-663</link><description><![CDATA[ I revisited the FULL_SCREEN event issue again, but still no luck. I followed the instructions exactly as indicated in the PDF manual:<br /><br />import JCPlayerEvent;<br />myJCPlayer.addEventListener(JCPlayerEvent.FULL_SCREEN,fullScreenHandler);<br /><br />private function fullScreenHandler(event:JCPlayerEvent):void {<br />myJCPlayer.highlightColor = 0x00FF00;<br />}<br /><br />(I'm testing in my browser so am changing the video player highlight color to verify whether the fullScreenHandler is getting called.) I've had no luck with this method but found a different solution in another post. I changed my event listener code to:<br /><br />stage.addEventListener(FullScreenEvent.FULL_SCREEN,fullScreenHandler);<br /><br />and that event is being detected and working properly. I went back and ran a trace on &quot;JCPlayerEvent.FULL_SCREEN&quot; to make sure that the JCPlayerEvent is being imported properly and that's working fine. I just can't get the JCPlayerEvent.FULL_SCREEN event to be detected.]]></description>
<dc:creator>bartpop</dc:creator>
<category>Discussions &amp; Support</category><pubDate>Wed, 09 Jun 2010 02:28:40 -0500</pubDate></item>
<item>
<guid>http://www.jcplayer.com/forum/read.php?5,655,661#msg-661</guid>
<title>Re: Fullscreen - fullScreenTakeOver propriety and problem</title><link>http://www.jcplayer.com/forum/read.php?5,655,661#msg-661</link><description><![CDATA[ Ok I post the Jumpeyes solution :<br /><br />1) put into your code :<br /><pre class="bbcode">
stage.addEventListener(FullScreenEvent.FULL_SCREEN, onFullscreenChange, false, 0xFF,true);

function  onFullscreenChange(e:FullScreenEvent):void {

   e.stopImmediatePropagation();

}</pre><br />2) use to mouseChildren=false or removeListener for stop event listener under JCPLayer.<br /><br />Thanks]]></description>
<dc:creator>jbargeton</dc:creator>
<category>Discussions &amp; Support</category><pubDate>Thu, 20 May 2010 08:06:01 -0500</pubDate></item>
<item>
<guid>http://www.jcplayer.com/forum/read.php?5,555,659#msg-659</guid>
<title>Re: Turn off Contextmenu</title><link>http://www.jcplayer.com/forum/read.php?5,555,659#msg-659</link><description><![CDATA[ Oup's ... sorry ... i did not see www.ilike2flash.com link.<br />You have to put<br /><pre class="bbcode">
var my_cMenu:ContextMenu = new ContextMenu();
my_cMenu.hideBuiltInItems();
parent.contextMenu = my_cMenu;</pre>
after JCPLayer new instance ...<br /><br />Thanks]]></description>
<dc:creator>jbargeton</dc:creator>
<category>Discussions &amp; Support</category><pubDate>Thu, 20 May 2010 07:34:47 -0500</pubDate></item>
<item>
<guid>http://www.jcplayer.com/forum/read.php?5,583,657#msg-657</guid>
<title>Re: Removing JCPLayer Instance with AS3</title><link>http://www.jcplayer.com/forum/read.php?5,583,657#msg-657</link><description><![CDATA[ jbargeton,<br /><br />Unfortunately we can not fix that bug write now but as I mentioned it will be fixed in the next major update.]]></description>
<dc:creator>florodebat</dc:creator>
<category>Discussions &amp; Support</category><pubDate>Thu, 20 May 2010 03:32:41 -0500</pubDate></item>
<item>
<guid>http://www.jcplayer.com/forum/read.php?5,655,655#msg-655</guid>
<title>Fullscreen - fullScreenTakeOver propriety and problem</title><link>http://www.jcplayer.com/forum/read.php?5,655,655#msg-655</link><description><![CDATA[ Hello,<br /><br />no fullScreenTakeOver propriety like FLVPlayback ...<br />my website use a fullscreen function. but if i use it, JCPlayer go to fullscreen ... and not the stage.<br /><br />when the JCPlayer go to fullscreen mode, the mouse is interacted with other movieclip on the stage, below from JCPlayer ... ? why ?<br /><br />Thanks]]></description>
<dc:creator>jbargeton</dc:creator>
<category>Discussions &amp; Support</category><pubDate>Wed, 19 May 2010 16:12:54 -0500</pubDate></item>
<item>
<guid>http://www.jcplayer.com/forum/read.php?5,555,653#msg-653</guid>
<title>Re: Turn off Contextmenu</title><link>http://www.jcplayer.com/forum/read.php?5,555,653#msg-653</link><description><![CDATA[ Hello,<br /><br />for me ... the context menu showing JCPlayer = It's a problem, because i use stage.showDefaultContextMenu=false; in the AS3 code and in the params value (HTML).<br />myJCPlayer is loaded in a swf, itself loaded in an other swf ... I don't want show the functions zoom in and zoom out etc...<br /><br />Thanks]]></description>
<dc:creator>jbargeton</dc:creator>
<category>Discussions &amp; Support</category><pubDate>Wed, 19 May 2010 16:03:08 -0500</pubDate></item>
<item>
<guid>http://www.jcplayer.com/forum/read.php?5,583,651#msg-651</guid>
<title>Re: Removing JCPLayer Instance with AS3</title><link>http://www.jcplayer.com/forum/read.php?5,583,651#msg-651</link><description><![CDATA[ Hello,<br /><br />a solution now for this problem ? ... i'm forced to use visible or not propriety with stop and close method...<br /><br />Thanks]]></description>
<dc:creator>jbargeton</dc:creator>
<category>Discussions &amp; Support</category><pubDate>Wed, 19 May 2010 16:01:01 -0500</pubDate></item>
<item>
<guid>http://www.jcplayer.com/forum/read.php?5,647,649#msg-649</guid>
<title>Re: Close Button</title><link>http://www.jcplayer.com/forum/read.php?5,647,649#msg-649</link><description><![CDATA[ grilledoctopus,<br /><br />Unfortunately the JCPLayer's already existing skins does not have such a button included . We will consider such a button in the future skins.]]></description>
<dc:creator>florodebat</dc:creator>
<category>Discussions &amp; Support</category><pubDate>Wed, 12 May 2010 04:00:14 -0500</pubDate></item>
<item>
<guid>http://www.jcplayer.com/forum/read.php?5,647,647#msg-647</guid>
<title>Close Button</title><link>http://www.jcplayer.com/forum/read.php?5,647,647#msg-647</link><description><![CDATA[ Anyone have a skin with an elegant X (close) button for the JCPlayer?]]></description>
<dc:creator>grilledoctopus</dc:creator>
<category>Discussions &amp; Support</category><pubDate>Tue, 04 May 2010 22:38:12 -0500</pubDate></item>
<item>
<guid>http://www.jcplayer.com/forum/read.php?5,637,645#msg-645</guid>
<title>Re: How can I check the jcplayers controller is hidden or not</title><link>http://www.jcplayer.com/forum/read.php?5,637,645#msg-645</link><description><![CDATA[ svennevs,<br /><br />We will consider your suggestion and if technically is possible we will add such an event to the next version of the component.]]></description>
<dc:creator>florodebat</dc:creator>
<category>Discussions &amp; Support</category><pubDate>Tue, 27 Apr 2010 03:41:25 -0500</pubDate></item>
<item>
<guid>http://www.jcplayer.com/forum/read.php?5,637,643#msg-643</guid>
<title>Re: How can I check the jcplayers controller is hidden or not</title><link>http://www.jcplayer.com/forum/read.php?5,637,643#msg-643</link><description><![CDATA[ OK, I understand. A event like that is on my wishlist anyway. I want to fade out my playlist component at the same time as the controller.]]></description>
<dc:creator>svennevs</dc:creator>
<category>Discussions &amp; Support</category><pubDate>Mon, 26 Apr 2010 08:56:07 -0500</pubDate></item>
<item>
<guid>http://www.jcplayer.com/forum/read.php?5,637,641#msg-641</guid>
<title>Re: How can I check the jcplayers controller is hidden or not</title><link>http://www.jcplayer.com/forum/read.php?5,637,641#msg-641</link><description><![CDATA[ svennevs,<br /><br />I am really sorry but there is no event that is dispatched when the control bar shows or hides.]]></description>
<dc:creator>florodebat</dc:creator>
<category>Discussions &amp; Support</category><pubDate>Thu, 22 Apr 2010 09:45:46 -0500</pubDate></item>
<item>
<guid>http://www.jcplayer.com/forum/read.php?5,631,639#msg-639</guid>
<title>Re: Special character in JCPlaylist XML</title><link>http://www.jcplayer.com/forum/read.php?5,631,639#msg-639</link><description><![CDATA[ svennevs,<br /><br />You are welcome.]]></description>
<dc:creator>florodebat</dc:creator>
<category>Discussions &amp; Support</category><pubDate>Thu, 22 Apr 2010 04:58:23 -0500</pubDate></item>
<item>
<guid>http://www.jcplayer.com/forum/read.php?5,637,637#msg-637</guid>
<title>How can I check the jcplayers controller is hidden or not</title><link>http://www.jcplayer.com/forum/read.php?5,637,637#msg-637</link><description><![CDATA[ I need to check when the controller is hidden. Or actually I want other things in my to happen when the contoller starts to fade out.<br />I can not find an event in the documentation for this purpose.<br /><br />Any Ideas?]]></description>
<dc:creator>svennevs</dc:creator>
<category>Discussions &amp; Support</category><pubDate>Wed, 21 Apr 2010 09:50:22 -0500</pubDate></item>
<item>
<guid>http://www.jcplayer.com/forum/read.php?5,631,635#msg-635</guid>
<title>Re: Special character in JCPlaylist XML</title><link>http://www.jcplayer.com/forum/read.php?5,631,635#msg-635</link><description><![CDATA[ Yes, worked nice. Thanks. You saved my day!]]></description>
<dc:creator>svennevs</dc:creator>
<category>Discussions &amp; Support</category><pubDate>Wed, 21 Apr 2010 09:44:59 -0500</pubDate></item>
</channel>
</rss>