<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>SUPPORT &#187; Forum: Troubleshooting - Recent Topics</title>
		<link>http://www.progressivered.com/cu3er/support/forum/troubleshooting</link>
		<description>CU3ER support forums &amp; community</description>
		<language>en-US</language>
		<pubDate>Thu, 09 Sep 2010 18:43:44 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.progressivered.com/cu3er/support/search.php</link>
		</textInput>
		<atom:link href="http://www.progressivered.com/cu3er/support/rss/forum/troubleshooting/topics" rel="self" type="application/rss+xml" />

		<item>
			<title>jimmy506 on "Can I have the right arrow button always visible?"</title>
			<link>http://www.progressivered.com/cu3er/support/topic/can-i-have-the-right-arrow-button-always-visible#post-1477</link>
			<pubDate>Sat, 28 Aug 2010 00:27:39 +0000</pubDate>
			<dc:creator>jimmy506</dc:creator>
			<guid isPermaLink="false">1477@http://www.progressivered.com/cu3er/support/</guid>
			<description>&#60;p&#62;Is it possible to have the next and previous buttons always visible? - Or just the right one?&#60;/p&#62;
&#60;p&#62;Thanks very much,&#60;br /&#62;
Jimmy
&#60;/p&#62;</description>
		</item>
		<item>
			<title>webarto on "CU3ER PHP XML Configuration"</title>
			<link>http://www.progressivered.com/cu3er/support/topic/cu3er-php-xml-configuration#post-1197</link>
			<pubDate>Wed, 19 May 2010 01:30:03 +0000</pubDate>
			<dc:creator>webarto</dc:creator>
			<guid isPermaLink="false">1197@http://www.progressivered.com/cu3er/support/</guid>
			<description>&#60;p&#62;Hello, if you want your images randomized (and effects) you can use this little PHP script.&#60;br /&#62;
Just replace default config.xml in HTML/JS with let's say cu3er.php (or whatever you name it).&#60;br /&#62;
Also you need to edit $dir to match one on your host.&#60;/p&#62;
&#60;p&#62;eg. &#60;a href=&#34;http://repro.babilon.ba/cu3er.php&#34; rel=&#34;nofollow&#34;&#62;http://repro.babilon.ba/cu3er.php&#60;/a&#62; &#38;amp; &#60;a href=&#34;http://repro.babilon.ba&#34; rel=&#34;nofollow&#34;&#62;http://repro.babilon.ba&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://webarto.com/32/php-cu3er-xml-configuration&#34; rel=&#34;nofollow&#34;&#62;http://webarto.com/32/php-cu3er-xml-configuration&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
&#38;lt;?&#60;br /&#62;
/**&#60;br /&#62;
 * CU3ER PHP XML Configuration&#60;br /&#62;
 * @author webarto.com&#60;br /&#62;
 * @copyright 2010&#60;br /&#62;
 */&#60;/p&#62;
&#60;p&#62;$slides = &#34;&#34;;&#60;br /&#62;
$dir = &#34;cu3er&#34;;&#60;/p&#62;
&#60;p&#62;function effect(){&#60;br /&#62;
srand((double)microtime()*1234567);&#60;br /&#62;
$effects = array(&#60;br /&#62;
'num=&#34;3&#34; slicing=&#34;vertical&#34; direction=&#34;down&#34; cube_color=&#34;0xFFFFFF&#34;',&#60;br /&#62;
'num=&#34;4&#34; direction=&#34;right&#34; shader=&#34;flat&#34; cube_color=&#34;0xFFFFFF&#34;',&#60;br /&#62;
'num=&#34;6&#34; slicing=&#34;vertical&#34; direction=&#34;up&#34; shader=&#34;flat&#34; delay=&#34;0.05&#34; z_multiplier=&#34;4&#34; cube_color=&#34;0xFFFFFF&#34;',&#60;br /&#62;
'num=&#34;4&#34; direction=&#34;right&#34; shader=&#34;phong&#34; cube_color=&#34;0xFFFFFF&#34;');&#60;br /&#62;
return $effects[mt_rand(0,count($effects)-1)];&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;$folder = scandir($dir);&#60;br /&#62;
foreach($folder as $file){&#60;br /&#62;
    if(strpos(strtolower($file),&#34;.jpg&#34;)&#38;gt;0){&#60;br /&#62;
        $slides.= '&#38;lt;slide&#38;gt;&#38;lt;url&#38;gt;/'.$dir.'/'.$file.'&#38;lt;/url&#38;gt;&#38;lt;/slide&#38;gt;&#38;lt;transition '.effect().' /&#38;gt;'.&#34;\n&#34;;&#60;br /&#62;
    }&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;header(&#34;Content-Type: text/xml&#34;);&#60;br /&#62;
echo('&#38;lt;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34; ?&#38;gt;&#60;br /&#62;
&#38;lt;cu3er&#38;gt;&#60;br /&#62;
	&#38;lt;settings&#38;gt;&#60;/p&#62;
&#60;p&#62;		&#38;lt;auto_play&#38;gt;&#60;br /&#62;
		&#38;lt;defaults symbol=&#34;circular&#34; time=&#34;3&#34; /&#38;gt;&#60;br /&#62;
		&#38;lt;tweenOver tint=&#34;0xFFFFFF&#34; scaleX=&#34;1.1&#34; scaleY=&#34;1.1&#34;/&#38;gt;&#60;br /&#62;
		&#38;lt;tweenOut tint=&#34;0xFFFFFF&#34;/&#38;gt;&#60;br /&#62;
		&#38;lt;/auto_play&#38;gt;		&#60;/p&#62;
&#60;p&#62;    	&#38;lt;prev_button&#38;gt;&#60;br /&#62;
			&#38;lt;defaults round_corners=&#34;5,5,5,5&#34;/&#38;gt;&#60;br /&#62;
			&#38;lt;tweenOver tint=&#34;0xFFFFFF&#34; scaleX=&#34;1.1&#34; scaleY=&#34;1.1&#34;/&#38;gt;&#60;br /&#62;
			&#38;lt;tweenOut tint=&#34;0x000000&#34; /&#38;gt;&#60;br /&#62;
		&#38;lt;/prev_button&#38;gt;&#60;/p&#62;
&#60;p&#62;    	&#38;lt;prev_symbol&#38;gt;&#60;br /&#62;
			&#38;lt;tweenOver tint=&#34;0x000000&#34; /&#38;gt;&#60;br /&#62;
		&#38;lt;/prev_symbol&#38;gt;&#60;/p&#62;
&#60;p&#62;    	&#38;lt;next_button&#38;gt;&#60;br /&#62;
			&#38;lt;defaults round_corners=&#34;5,5,5,5&#34;/&#38;gt;&#60;br /&#62;
			&#38;lt;tweenOver tint=&#34;0xFFFFFF&#34;  scaleX=&#34;1.1&#34; scaleY=&#34;1.1&#34;/&#38;gt;&#60;br /&#62;
			&#38;lt;tweenOut tint=&#34;0x000000&#34; /&#38;gt;&#60;br /&#62;
		&#38;lt;/next_button&#38;gt;&#60;/p&#62;
&#60;p&#62;    	&#38;lt;next_symbol&#38;gt;&#60;br /&#62;
			&#38;lt;tweenOver tint=&#34;0x000000&#34; /&#38;gt;&#60;br /&#62;
		&#38;lt;/next_symbol&#38;gt;	&#60;/p&#62;
&#60;p&#62;	&#38;lt;/settings&#38;gt;    &#60;/p&#62;
&#60;p&#62;	&#38;lt;slides&#38;gt;&#60;br /&#62;
'.$slides.'&#60;br /&#62;
	&#38;lt;/slides&#38;gt;&#60;br /&#62;
&#38;lt;/cu3er&#38;gt;');&#60;br /&#62;
?&#38;gt;&#60;br /&#62;
&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Elegy on "RED BG ON IE8 - Still no clear answet on how to fix it."</title>
			<link>http://www.progressivered.com/cu3er/support/topic/red-bg-on-ie8-still-no-clear-answet-on-how-to-fix-it#post-1107</link>
			<pubDate>Wed, 28 Apr 2010 19:08:28 +0000</pubDate>
			<dc:creator>Elegy</dc:creator>
			<guid isPermaLink="false">1107@http://www.progressivered.com/cu3er/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;This issue has been brought up many times on the forum but still no clear answer on the fix. Even if the images are the same size as the .swf the issue still occurs. No need for example but the &#60;a href=&#34;http://www.progressivered.com/cu3er/&#34; rel=&#34;nofollow&#34;&#62;http://www.progressivered.com/cu3er/&#60;/a&#62; site, it has the same issue.&#60;/p&#62;
&#60;p&#62;Please we need a clear answer on this issue as a lot of people are experiencing the same problem.&#60;/p&#62;
&#60;p&#62;Thank You
&#60;/p&#62;</description>
		</item>
		<item>
			<title>darko81 on "CU3ER in facebook static fbml"</title>
			<link>http://www.progressivered.com/cu3er/support/topic/cu3er-in-facebook-static-fbml#post-1307</link>
			<pubDate>Fri, 11 Jun 2010 19:07:50 +0000</pubDate>
			<dc:creator>darko81</dc:creator>
			<guid isPermaLink="false">1307@http://www.progressivered.com/cu3er/support/</guid>
			<description>&#60;p&#62;I want to embedd cu3er into ifacebook static fbml. I have put this code for embedding swf file in fbml:&#60;/p&#62;
&#60;p&#62;&#38;lt;fb:swf&#60;br /&#62;
swfsrc='http://www.mysite.com/cu3er/cu3er.swf'&#60;br /&#62;
imgsrc='http://www.mysite.com/cu3er/images/slide_1.jpg'&#60;br /&#62;
width='600'  height='300' /&#38;gt;&#60;/p&#62;
&#60;p&#62;When i view tab the cu3er logo shows in but the movie does not start playing.&#60;/p&#62;
&#60;p&#62;Can anyone help me?!?!?!&#60;br /&#62;
Is it posible to embedd cu3er in static fbml?!?!?!?!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>hengey on "Cu3er &#38; Tumblr Embed Code?"</title>
			<link>http://www.progressivered.com/cu3er/support/topic/cu3er-tumblr-embed-code#post-1038</link>
			<pubDate>Fri, 16 Apr 2010 02:57:32 +0000</pubDate>
			<dc:creator>hengey</dc:creator>
			<guid isPermaLink="false">1038@http://www.progressivered.com/cu3er/support/</guid>
			<description>&#60;p&#62;Hi&#60;/p&#62;
&#60;p&#62;I know this is such a rookie question to ask, but as you can see here &#60;a href=&#34;http://www.semothyjones.com&#34; rel=&#34;nofollow&#34;&#62;http://www.semothyjones.com&#60;/a&#62; I was messing with the idea of having my Cu3er as a header on a Tumblr blog, but I have two problems...&#60;/p&#62;
&#60;p&#62;One of them being the fact that I'm using free hosting on x10hosting.com so I need to link to the files off there.&#60;br /&#62;
But the main problem is that I don't know what kinda of Embed code I should use? I just found a generic swf embed code but assume this don't read the config file etc as it only directs to the SWF.&#60;/p&#62;
&#60;p&#62;Anyway, any ideas would be a great help.&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>bascho90 on "Implement cu3er in Joomla without a module"</title>
			<link>http://www.progressivered.com/cu3er/support/topic/implement-cu3er-in-joomla-without-a-module#post-1471</link>
			<pubDate>Sun, 25 Jul 2010 11:46:34 +0000</pubDate>
			<dc:creator>bascho90</dc:creator>
			<guid isPermaLink="false">1471@http://www.progressivered.com/cu3er/support/</guid>
			<description>&#60;p&#62;hi @ all&#60;/p&#62;
&#60;p&#62;I'm really looking forward to use cu3er in my Joomla-Website, but until now i had a problem. When i open the page, where the following code is saved, then i just can see the &#34;load-image&#34; (red square with a cu3er symbol) of cu3er, but the main part is never loeaded:&#60;/p&#62;
&#60;p&#62;  &#38;lt;p&#38;gt;&#60;br /&#62;
  &#38;lt;script type=&#34;text/javascript&#34; src=&#34;cu3er/js/swfobject/swfobject.js&#34;&#38;gt;&#38;lt;/script&#38;gt;&#38;lt;script type=&#34;text/javascript&#34;&#38;gt;&#60;br /&#62;
		var flashvars = {};&#60;br /&#62;
		flashvars.xml = &#34;cu3er/config.xml&#34;;&#60;br /&#62;
		flashvars.font = &#34;font.swf&#34;;&#60;br /&#62;
		var attributes = {};&#60;br /&#62;
		attributes.wmode = &#34;transparent&#34;;&#60;br /&#62;
		attributes.id = &#34;slider&#34;;&#60;br /&#62;
		swfobject.embedSWF(&#34;cu3er/cu3er.swf&#34;, &#34;cu3er-container&#34;, &#34;600&#34;, &#34;300&#34;, &#34;9&#34;, &#34;expressInstall.swf&#34;, flashvars, attributes);&#60;br /&#62;
  &#38;lt;/script&#38;gt;&#38;lt;/p&#38;gt;&#60;br /&#62;
  &#38;lt;div id=&#34;cu3er-container&#34;&#38;gt;&#60;br /&#62;
	&#60;a href=&#34;http://www.adobe.com/go/getflashplayer&#34;&#62; &#38;lt;img alt=&#34;Get Adobe Flash player&#34; src=&#34;http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif&#34; /&#38;gt; &#60;/a&#62;&#38;lt;/div&#38;gt;&#60;/p&#62;
&#60;p&#62;(Btw: the cu3er folder is here: &#60;a href=&#34;http://www.my_homepage.ch/cu3er/..&#34; rel=&#34;nofollow&#34;&#62;http://www.my_homepage.ch/cu3er/..&#60;/a&#62;.)&#60;/p&#62;
&#60;p&#62;Do someone know where my problem is?&#60;/p&#62;
&#60;p&#62;Thanks 4 help.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>soozyq on "Inserting cu3er into Dreamweaver page"</title>
			<link>http://www.progressivered.com/cu3er/support/topic/inserting-cu3er-into-dreamweaver-page#post-1420</link>
			<pubDate>Fri, 09 Jul 2010 20:00:20 +0000</pubDate>
			<dc:creator>soozyq</dc:creator>
			<guid isPermaLink="false">1420@http://www.progressivered.com/cu3er/support/</guid>
			<description>&#60;p&#62;I have managed to get me cu3er working with my images and it works directly from the file but I have been trying to add it to an existing page I have made in dreamweaver CS4. When I do this all I get is the cu3er symbol and none of my images.&#60;br /&#62;
I know I have been going very wrong somewhere I'm just not sure where.&#60;br /&#62;
I have tried to follow the documentation and have tried changing a number of things but still no joy.&#60;br /&#62;
I am adding it into dreamweaver by going to insert, media, SWF. Is there an different way to do this?&#60;br /&#62;
the url is &#60;a href=&#34;http://www.anruadesigns.com/testing&#34; rel=&#34;nofollow&#34;&#62;http://www.anruadesigns.com/testing&#60;/a&#62;&#60;br /&#62;
If anyone could enlighten me I would be very grateful.&#60;br /&#62;
I am very new to this so apologies if it is very obvious.&#60;br /&#62;
Thanks&#60;br /&#62;
Sooz
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kcmedia on "more than 1 CU3ER on a page"</title>
			<link>http://www.progressivered.com/cu3er/support/topic/more-than-1-cu3er-on-a-page#post-1352</link>
			<pubDate>Tue, 22 Jun 2010 05:48:10 +0000</pubDate>
			<dc:creator>kcmedia</dc:creator>
			<guid isPermaLink="false">1352@http://www.progressivered.com/cu3er/support/</guid>
			<description>&#60;p&#62;Hi&#60;/p&#62;
&#60;p&#62;I have CU3Er running on a page &#60;a href=&#34;http://www.actionmc.com.au&#34; rel=&#34;nofollow&#34;&#62;http://www.actionmc.com.au&#60;/a&#62; and i want to be able to have a 2nd one running on the same page.&#60;/p&#62;
&#60;p&#62;I am using .htaccess to do this&#60;br /&#62;
RewriteEngine on&#60;br /&#62;
RewriteRule config.xml$ config.xml.php [L]&#60;/p&#62;
&#60;p&#62;so that my client use my CMS system to add pictures&#60;/p&#62;
&#60;p&#62;But now they want to have a 2nd one on the page how do i go about it all now.&#60;/p&#62;
&#60;p&#62;thank you&#60;/p&#62;
&#60;p&#62;Craig
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jaimemontiel on "Change subdomain to domain in Joomla"</title>
			<link>http://www.progressivered.com/cu3er/support/topic/change-subdomain-to-domain-in-joomla#post-1467</link>
			<pubDate>Fri, 23 Jul 2010 03:05:11 +0000</pubDate>
			<dc:creator>jaimemontiel</dc:creator>
			<guid isPermaLink="false">1467@http://www.progressivered.com/cu3er/support/</guid>
			<description>&#60;p&#62;Hello all, my problem is very easy i used to use &#60;a href=&#34;http://mydomain.com/newpage/&#34; rel=&#34;nofollow&#34;&#62;http://mydomain.com/newpage/&#60;/a&#62; as a root folder for my joomla installation now i migrate it to &#60;a href=&#34;http://www.newpage.com&#34; rel=&#34;nofollow&#34;&#62;http://www.newpage.com&#60;/a&#62;.&#60;/p&#62;
&#60;p&#62;The server is exactly the same, I just point the dns of that domain to that part of the server. &#60;/p&#62;
&#60;p&#62;My problem is that now my cu3er is not showing up the images, is only showing the cu3er logo.&#60;/p&#62;
&#60;p&#62;Im looking for updating something like configuration.php in Joomla but for cu3er. I guess i have to change &#60;a href=&#34;http://mydomain.com/newpage/&#34; rel=&#34;nofollow&#34;&#62;http://mydomain.com/newpage/&#60;/a&#62; for &#60;a href=&#34;http://www.newpage.com&#34; rel=&#34;nofollow&#34;&#62;http://www.newpage.com&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Marsh on "Background issue"</title>
			<link>http://www.progressivered.com/cu3er/support/topic/background-issue#post-1371</link>
			<pubDate>Tue, 29 Jun 2010 13:39:52 +0000</pubDate>
			<dc:creator>Marsh</dc:creator>
			<guid isPermaLink="false">1371@http://www.progressivered.com/cu3er/support/</guid>
			<description>&#60;p&#62;First of all, congrats with CU3ER, I love it!&#60;br /&#62;
It’s the first time I’m using this, and I almost get everything, except for one thing.&#60;br /&#62;
I need the background from the animation to be transparent, so the original background colours/gradient can  be viewed if the CU3ER is turning.&#60;br /&#62;
I already checked out  the pages on the forum, but I can’t figger it out.&#60;/p&#62;
&#60;p&#62;Your w’r saying you can make the Cu3ER transparent by setting wmode variable in JS embedding script.&#60;/p&#62;
&#60;p&#62;“&#38;lt;script type=&#34;text/javascript&#34;&#38;gt;&#60;br /&#62;
var flashvars = {};&#60;br /&#62;
flashvars.xml = &#34;config.xml&#34;;&#60;br /&#62;
flashvars.font = &#34;demo/miso_font.swf&#34;;&#60;br /&#62;
var params = {};&#60;br /&#62;
params.allowscriptaccess = &#34;always&#34;;&#60;br /&#62;
params.allownetworking = &#34;all&#34;;&#60;br /&#62;
params.wmode = &#34;transparent&#34;;&#60;br /&#62;
var attributes = {};&#60;br /&#62;
attributes.id = &#34;slider&#34;;&#60;br /&#62;
swfobject.embedSWF(&#34;cu3er.swf&#34;, &#34;cu3er_swf&#34;, &#34;960&#34;, &#34;360&#34;, &#34;9&#34;, &#34;expressInstall.swf&#34;, flashvars, params, attributes);&#60;br /&#62;
&#38;lt;/script&#38;gt;”&#60;/p&#62;
&#60;p&#62;But whére do I put this? Do I have to put this lines somewhere in swfobject.js?&#60;br /&#62;
And If so, where exactly? I really can’t figger it out.&#60;/p&#62;
&#60;p&#62;Greetz from Holland/the Netherlands!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>steven11 on "How to change the opening preloader?"</title>
			<link>http://www.progressivered.com/cu3er/support/topic/how-to-change-the-opening-preloader#post-41</link>
			<pubDate>Fri, 06 Nov 2009 05:47:06 +0000</pubDate>
			<dc:creator>steven11</dc:creator>
			<guid isPermaLink="false">41@http://www.progressivered.com/cu3er/support/</guid>
			<description>&#60;p&#62;Is it possible to change the opening CU3ER logo preloader (not the slide preloader)? or can it use symbol = &#34;circular&#34; or &#34;linear&#34; ?&#60;/p&#62;
&#60;p&#62;Thanks in advanced :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rich_tilbury on "Running Cu3er under SSL: This page contains both secure and non-secure items."</title>
			<link>http://www.progressivered.com/cu3er/support/topic/running-cu3er-under-ssl-this-page-contains-both-secure-and-non-secure-items#post-1105</link>
			<pubDate>Wed, 28 Apr 2010 17:10:34 +0000</pubDate>
			<dc:creator>rich_tilbury</dc:creator>
			<guid isPermaLink="false">1105@http://www.progressivered.com/cu3er/support/</guid>
			<description>&#60;p&#62;Hi&#60;br /&#62;
As above.  Part of the site runs under SSL and I get the dreaded &#34;page contains&#34; error when it contains cu3er on a page load.   I click &#34;no&#34; but still see the logo, my images and buttons, so I'm assuming that it is something I can't see that is being loaded with an http ref rather than https.&#60;br /&#62;
Any help would be great.  Love the control. brilliant work! :)&#60;br /&#62;
Cheers&#60;br /&#62;
Rich&#60;/p&#62;
&#60;p&#62;(I can't show you the actual page I'm afraid.)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tcimaster on "Cu3er under secured and unsercured page (SSL)"</title>
			<link>http://www.progressivered.com/cu3er/support/topic/cu3er-under-secured-and-unsercured-page-ssl#post-1459</link>
			<pubDate>Wed, 21 Jul 2010 00:16:50 +0000</pubDate>
			<dc:creator>tcimaster</dc:creator>
			<guid isPermaLink="false">1459@http://www.progressivered.com/cu3er/support/</guid>
			<description>&#60;p&#62;Hi I got problem running cu3er under secured page, it affects the my SSL page, it says it is unsercured , or part of the page is not authenticated..when i removed the cu3er my SSL page is ok... when running cu3er in https, my secured page is broken.&#60;/p&#62;
&#60;p&#62;but in unsercured page all are running ok...&#60;/p&#62;
&#60;p&#62;Please help, whts the best se4tting for these one, so that i could use cu3er even in secured page.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>zyklon on "Cu3er bandwith killer"</title>
			<link>http://www.progressivered.com/cu3er/support/topic/cu3er-bandwith-killer#post-1458</link>
			<pubDate>Tue, 20 Jul 2010 01:51:45 +0000</pubDate>
			<dc:creator>zyklon</dc:creator>
			<guid isPermaLink="false">1458@http://www.progressivered.com/cu3er/support/</guid>
			<description>&#60;p&#62;Hi we are running it on our site and because cu3er regrabs the image everytime it shows one it is killing our bandwith on top of the fact is has a 150kb footprint. This is more a request than a troubleshoot. But please make this better on bandwith.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>morris on "background change under photo"</title>
			<link>http://www.progressivered.com/cu3er/support/topic/background-change-under-photo#post-1457</link>
			<pubDate>Mon, 19 Jul 2010 18:25:55 +0000</pubDate>
			<dc:creator>morris</dc:creator>
			<guid isPermaLink="false">1457@http://www.progressivered.com/cu3er/support/</guid>
			<description>&#60;p&#62;Hi!&#60;br /&#62;
I downloaded and installed Vianora Cu3er 3D slideshows (joomla module). Everything works OK. Now,  I want to change the background color in the images (default is white now) but I can not understand how I do.&#60;br /&#62;
Can you help?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Hurga_Gonzales on "Cu3ing external images?"</title>
			<link>http://www.progressivered.com/cu3er/support/topic/cu3ing-external-images#post-1456</link>
			<pubDate>Mon, 19 Jul 2010 17:18:11 +0000</pubDate>
			<dc:creator>Hurga_Gonzales</dc:creator>
			<guid isPermaLink="false">1456@http://www.progressivered.com/cu3er/support/</guid>
			<description>&#60;p&#62;Hiho,&#60;/p&#62;
&#60;p&#62;found a post five months ago where have been mentioned that Cu3er will support external images from other domains in the next version. I love Cu3er and use it in some sites but now I'd need this feature badly.&#60;br /&#62;
Is there any accurate information about when this will happen?&#60;/p&#62;
&#60;p&#62;Thank you in advance, keep up the outstanding work.&#60;br /&#62;
Hurga ;)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>soozyq on "Images not appearing in Cu3er"</title>
			<link>http://www.progressivered.com/cu3er/support/topic/images-not-appearing-in-cu3er#post-1443</link>
			<pubDate>Wed, 14 Jul 2010 13:03:57 +0000</pubDate>
			<dc:creator>soozyq</dc:creator>
			<guid isPermaLink="false">1443@http://www.progressivered.com/cu3er/support/</guid>
			<description>&#60;p&#62;I have cu3er working in the hml&#60;br /&#62;
&#60;a href=&#34;http://www.anruadesigns.com/testing/cu3er_v/cu3er.htm&#34; rel=&#34;nofollow&#34;&#62;http://www.anruadesigns.com/testing/cu3er_v/cu3er.htm&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;however when I insert it into my page my own images do not come up.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.anruadesigns.com/testing&#34; rel=&#34;nofollow&#34;&#62;http://www.anruadesigns.com/testing&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Any ideas?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>discoian on "Description box disappears so quick!"</title>
			<link>http://www.progressivered.com/cu3er/support/topic/description-box-disappears-so-quick#post-1433</link>
			<pubDate>Tue, 13 Jul 2010 23:05:40 +0000</pubDate>
			<dc:creator>discoian</dc:creator>
			<guid isPermaLink="false">1433@http://www.progressivered.com/cu3er/support/</guid>
			<description>&#60;p&#62;Is there anything wrong with this section of code from my config.xml?&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;cu3er&#38;gt;&#60;br /&#62;
&#38;lt;settings&#38;gt;&#60;br /&#62;
&#38;lt;general&#38;gt;&#60;br /&#62;
   ui_visibility_time=&#34;5&#34;&#60;br /&#62;
&#38;lt;/general&#38;gt;&#60;br /&#62;
&#38;lt;auto_play&#38;gt;&#60;br /&#62;
   &#38;lt;defaults symbol=&#34;circular&#34; time=&#34;5&#34; /&#38;gt;&#60;br /&#62;
&#38;lt;/auto_play&#38;gt;&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;As I understand it, the description should appear for 5 seconds, almost the same time as the time between slides, but it goes after about 3 seconds.  Even if I leave it for 10, it still goes in 3 seconds.&#60;/p&#62;
&#60;p&#62;What am I doing wrong??
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dmar78 on "Screen frozen on cube.  Please Advise"</title>
			<link>http://www.progressivered.com/cu3er/support/topic/screen-frozen-on-cube-please-advise#post-1408</link>
			<pubDate>Tue, 06 Jul 2010 03:48:10 +0000</pubDate>
			<dc:creator>dmar78</dc:creator>
			<guid isPermaLink="false">1408@http://www.progressivered.com/cu3er/support/</guid>
			<description>&#60;p&#62;Hi, I have searched this forum and it seems that a lot of people have had the same problem in the past with cu3er getting stuck at the logo.  I have tried the different path setting from relative to absolute, but I am still having issues with it.  Here is my code:&#60;/p&#62;
&#60;p&#62;config.xml&#60;/p&#62;
&#60;p&#62;[code]&#38;lt;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34; ?&#38;gt;&#60;br /&#62;
&#38;lt;cu3er&#38;gt;&#60;br /&#62;
	&#38;lt;settings&#38;gt;&#60;/p&#62;
&#60;p&#62;    	&#38;lt;prev_button&#38;gt;&#60;br /&#62;
			&#38;lt;defaults round_corners=&#34;5,5,5,5&#34;/&#38;gt;&#60;br /&#62;
			&#38;lt;tweenOver tint=&#34;0xFFFFFF&#34; scaleX=&#34;1.1&#34; scaleY=&#34;1.1&#34;/&#38;gt;&#60;br /&#62;
			&#38;lt;tweenOut tint=&#34;0x000000&#34; /&#38;gt;&#60;br /&#62;
		&#38;lt;/prev_button&#38;gt;&#60;/p&#62;
&#60;p&#62;    	&#38;lt;prev_symbol&#38;gt;&#60;br /&#62;
			&#38;lt;tweenOver tint=&#34;0x000000&#34; /&#38;gt;&#60;br /&#62;
		&#38;lt;/prev_symbol&#38;gt;&#60;/p&#62;
&#60;p&#62;    	&#38;lt;next_button&#38;gt;&#60;br /&#62;
			&#38;lt;defaults round_corners=&#34;5,5,5,5&#34;/&#38;gt;&#60;br /&#62;
			&#38;lt;tweenOver tint=&#34;0xFFFFFF&#34;  scaleX=&#34;1.1&#34; scaleY=&#34;1.1&#34;/&#38;gt;&#60;br /&#62;
			&#38;lt;tweenOut tint=&#34;0x000000&#34; /&#38;gt;&#60;br /&#62;
		&#38;lt;/next_button&#38;gt;&#60;/p&#62;
&#60;p&#62;    	&#38;lt;next_symbol&#38;gt;&#60;br /&#62;
			&#38;lt;tweenOver tint=&#34;0x000000&#34; /&#38;gt;&#60;br /&#62;
		&#38;lt;/next_symbol&#38;gt;	&#60;/p&#62;
&#60;p&#62;	&#38;lt;/settings&#38;gt;    &#60;/p&#62;
&#60;p&#62;	&#38;lt;slides&#38;gt;&#60;/p&#62;
&#60;p&#62;        &#38;lt;slide&#38;gt;&#60;br /&#62;
            &#38;lt;url&#38;gt;http://www.nationalfitnesspro.com/Images/slide_1.jpg&#38;lt;/url&#38;gt;&#60;br /&#62;
        &#38;lt;/slide&#38;gt;&#60;br /&#62;
		&#38;lt;!-- changing transition between first &#38;amp; second slide --&#38;gt;&#60;br /&#62;
        &#38;lt;transition num=&#34;3&#34; slicing=&#34;vertical&#34; direction=&#34;down&#34;/&#38;gt;&#60;br /&#62;
        &#38;lt;slide&#38;gt;&#60;br /&#62;
       		&#38;lt;url&#38;gt;http://www.nationalfitnesspro.com/Images/slide_2.jpg&#38;lt;/url&#38;gt;&#60;br /&#62;
        &#38;lt;/slide&#38;gt;&#60;br /&#62;
		&#38;lt;!-- changing transition between second &#38;amp; third slide --&#38;gt;&#60;br /&#62;
        &#38;lt;transition num=&#34;4&#34; direction=&#34;right&#34; shader=&#34;flat&#34; /&#38;gt;&#60;br /&#62;
		&#38;lt;slide&#38;gt;&#60;br /&#62;
            &#38;lt;url&#38;gt;http://www.nationalfitnesspro.com/Images/slide_3.jpg&#38;lt;/url&#38;gt;&#60;br /&#62;
        &#38;lt;/slide&#38;gt;&#60;br /&#62;
        &#38;lt;!-- transitions properties defined in transitions template --&#38;gt;&#60;br /&#62;
		&#38;lt;slide&#38;gt;&#60;br /&#62;
       		&#38;lt;url&#38;gt;http://www.nationalfitnesspro.com/Images/slide_4.jpg&#38;lt;/url&#38;gt;&#60;br /&#62;
        &#38;lt;/slide&#38;gt;&#60;br /&#62;
		&#38;lt;transition num=&#34;6&#34; slicing=&#34;vertical&#34; direction=&#34;up&#34; shader=&#34;flat&#34; delay=&#34;0.05&#34; z_multiplier=&#34;4&#34; /&#38;gt;&#60;br /&#62;
        &#38;lt;slide&#38;gt;&#60;br /&#62;
       		&#38;lt;url&#38;gt;http://www.nationalfitnesspro.com/Images/slide_5.jpg&#38;lt;/url&#38;gt;&#60;br /&#62;
        &#38;lt;/slide&#38;gt;&#60;/p&#62;
&#60;p&#62;	&#38;lt;/slides&#38;gt;&#60;br /&#62;
&#38;lt;/cu3er&#38;gt;[code]&#60;/p&#62;
&#60;p&#62;My script in my index page:&#60;br /&#62;
[code]&#38;lt;!--  STEP ONE: insert path to SWFObject JavaScript --&#38;gt;&#60;br /&#62;
&#38;lt;script type=&#34;text/javascript&#34; src=&#34;http://www.nationalfitnesspro.com/js/swfobject/swfobject.js&#34;&#38;gt;&#38;lt;/script&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;!--  STEP TWO: configure SWFObject JavaScript and embed CU3ER slider --&#38;gt;&#60;br /&#62;
&#38;lt;script type=&#34;text/javascript&#34;&#38;gt;&#60;br /&#62;
		var flashvars = {};&#60;br /&#62;
		flashvars.xml = &#34;config.xml&#34;;&#60;br /&#62;
		flashvars.font = &#34;font.swf&#34;;&#60;br /&#62;
		var attributes = {};&#60;br /&#62;
		attributes.wmode = &#34;transparent&#34;;&#60;br /&#62;
		attributes.id = &#34;slider&#34;;&#60;br /&#62;
		swfobject.embedSWF(&#34;cu3er.swf&#34;, &#34;cu3er-container&#34;, &#34;600&#34;, &#34;200&#34;, &#34;9&#34;, &#34;expressInstall.swf&#34;, flashvars, attributes);&#60;br /&#62;
&#38;lt;/script&#38;gt;[code]&#60;/p&#62;
&#60;p&#62;and my body:&#60;/p&#62;
&#60;p&#62;[code]&#38;lt;div id=&#34;header_wrapper&#34;&#38;gt;&#60;br /&#62;
	&#38;lt;div id=&#34;header&#34;&#38;gt;&#38;lt;div id=&#34;logo_header&#34;&#38;gt;&#38;lt;div id=&#34;cu3er-container&#34;&#38;gt;&#60;br /&#62;
    	&#38;lt;/div&#38;gt;&#38;lt;/div&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
&#38;lt;/div&#38;gt;[code]&#60;/p&#62;
&#60;p&#62;Thank you!  I know this is a redundant question!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jchaney on "Links not working"</title>
			<link>http://www.progressivered.com/cu3er/support/topic/links-not-working#post-1326</link>
			<pubDate>Tue, 15 Jun 2010 22:21:37 +0000</pubDate>
			<dc:creator>jchaney</dc:creator>
			<guid isPermaLink="false">1326@http://www.progressivered.com/cu3er/support/</guid>
			<description>&#60;p&#62;Here's my source:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.nightfuse.com/xml/cu3er.xml&#34; rel=&#34;nofollow&#34;&#62;http://www.nightfuse.com/xml/cu3er.xml&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Everything else works great. Can't figure out what's wrong. I've tried relative paths too and it didn't work then either. I've also tried different link attributes _self/_blank/etc. I'm desperate for an answer.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
