<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>Forums</title>
		<link>http://flashpanoramas.com/forum</link>
		<description />
		<language>en</language>
		<lastBuildDate>Fri, 20 Nov 2009 23:16:44 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://flashpanoramas.com/forum/images/misc/rss.jpg</url>
			<title>Forums</title>
			<link>http://flashpanoramas.com/forum</link>
		</image>
		<item>
			<title>Listen on CustomEvent to SpotSprite object in AS3</title>
			<link>http://flashpanoramas.com/forum/showthread.php?t=2640&amp;goto=newpost</link>
			<pubDate>Fri, 20 Nov 2009 13:55:30 GMT</pubDate>
			<description>Hi all, I would execute a function on my custom event.

My goal is to run the FOR statement only once at the beginning of my application.

I followed...</description>
			<content:encoded><![CDATA[<div>Hi all, I would execute a function on my custom event.<br />
<br />
My goal is to run the FOR statement only once at the beginning of my application.<br />
<br />
I followed <a href="http://evolve.reintroducing.com/2007/10/23/as3/as3-custom-events/" target="_blank">this</a> guide to create a custom event.<br />
<br />
Custom Event package:<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">package<br />
{<br />
&nbsp; &nbsp; import flash.events.*;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; public class CustomEvent extends Event<br />
&nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; public static const DEFAULT_NAME:String = &quot;DefaultName&quot;;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; // event constants<br />
&nbsp; &nbsp; &nbsp; &nbsp; public static const ON_TEST_CASE:String = &quot;onTestCase&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; public var params:Object;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; public function CustomEvent($type:String, $params:Object, $bubbles:Boolean = false, $cancelable:Boolean = false)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; super($type, $bubbles, $cancelable);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; this.params = $params;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; public override function clone():Event<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return new CustomEvent(type, this.params, bubbles, cancelable);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; public override function toString():String<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return formatToString(&quot;CustomEvent&quot;, &quot;params&quot;, &quot;type&quot;, &quot;bubbles&quot;, &quot;cancelable&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; }<br />
}</code><hr />
</div>Main file:<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">import flash.events.*;<br />
import CustomEvent;<br />
<br />
var evt:CustomEvent = new CustomEvent(CustomEvent.ON_TEST_CASE, {param1: &quot;first param&quot;, param2: &quot;second param&quot;});<br />
<br />
for (var spot_id:String in hotspots.getSpots()) {<br />
&nbsp; var spot:Object = hotspots.getSpot(spot_id).movie;<br />
<br />
&nbsp; // this works<br />
&nbsp; //spot.addEventListener(MouseEvent.CLICK, doStuff);<br />
<br />
&nbsp; // this not works<br />
&nbsp; spot.addEventListener(CustomEvent.ON_TEST_CASE, doStuff);<br />
<br />
&nbsp; // this print TRUE&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; trace(spot.hasEventListener(CustomEvent.ON_TEST_CASE));<br />
}<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
dispatchEvent(evt);<br />
<br />
function doStuff(e:Event):void<br />
{<br />
&nbsp; trace(e.target);<br />
}</code><hr />
</div>As I've commented in the code, the EventListener doesn't work on my SpotSprite object.<br />
<br />
Any suggestions?<br />
<br />
Thanks.</div>

]]></content:encoded>
			<category domain="http://flashpanoramas.com/forum/forumdisplay.php?f=7">Flash Panorama Player</category>
			<dc:creator>ranone</dc:creator>
			<guid isPermaLink="true">http://flashpanoramas.com/forum/showthread.php?t=2640</guid>
		</item>
		<item>
			<title>zoom button from within embedPano.fla</title>
			<link>http://flashpanoramas.com/forum/showthread.php?t=2639&amp;goto=newpost</link>
			<pubDate>Fri, 20 Nov 2009 09:04:27 GMT</pubDate>
			<description><![CDATA[Hello,

I wonder how to do zoom pano by button in embedPano.fla

I've tried:
panorama.pano.zoomKey = 1;
panorama.pano.zoomKey = -1;

but it makes...]]></description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
I wonder how to do zoom pano by button in embedPano.fla<br />
<br />
I've tried:<br />
panorama.pano.zoomKey = 1;<br />
panorama.pano.zoomKey = -1;<br />
<br />
but it makes full zoom in and zoom out gradualy in one second maybe.<br />
changing it to panorama.pano.zoomKey = 0.2 f.e makes zoomin slower.<br />
I dont want any of these. I just need functionality of short pressed keyboard keys, which makes pano <b>zoom in steps</b>.<br />
<br />
-- <br />
Regards<br />
MM</div>

]]></content:encoded>
			<category domain="http://flashpanoramas.com/forum/forumdisplay.php?f=7">Flash Panorama Player</category>
			<dc:creator>maciej.m</dc:creator>
			<guid isPermaLink="true">http://flashpanoramas.com/forum/showthread.php?t=2639</guid>
		</item>
		<item>
			<title>Violation of image rights in France</title>
			<link>http://flashpanoramas.com/forum/showthread.php?t=2638&amp;goto=newpost</link>
			<pubDate>Thu, 19 Nov 2009 19:01:30 GMT</pubDate>
			<description>To my dear french fellow panoramists :

Please be aware that one new commercial website is currently broadcasting all your virtual tours without any...</description>
			<content:encoded><![CDATA[<div>To my dear french fellow panoramists :<br />
<br />
Please be aware that one new commercial website is currently broadcasting all your virtual tours without any authorization :<br />
<a href="http://www.1001visites.com" target="_blank">http://www.1001visites.com</a><br />
<br />
We warned them already and asked them to close their website with no delay.<br />
Please do so if your visits are also broadcasted without your consent.<br />
<br />
It only concerns virtual tours related to France.<br />
<br />
Cheers;<br />
<br />
Rémi<br />
Showaround<br />
<a href="http://www.lafranceen360.fr" target="_blank">http://www.lafranceen360.fr</a></div>

]]></content:encoded>
			<category domain="http://flashpanoramas.com/forum/forumdisplay.php?f=10">Showcase</category>
			<dc:creator>pokeni</dc:creator>
			<guid isPermaLink="true">http://flashpanoramas.com/forum/showthread.php?t=2638</guid>
		</item>
		<item>
			<title><![CDATA[Error #1034 - why I'm getting this]]></title>
			<link>http://flashpanoramas.com/forum/showthread.php?t=2637&amp;goto=newpost</link>
			<pubDate>Thu, 19 Nov 2009 13:22:33 GMT</pubDate>
			<description><![CDATA[Hello,

I'm creating my second project with FPP and now I get errors which I didn't get before


Code:
---------
1118: Implicit coercion of a value...]]></description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
I'm creating my second project with FPP and now I get errors which I didn't get before<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">1118: Implicit coercion of a value with static type flash.display : DisplayObject to a possibly unrelated type flash.display:MovieClip.</code><hr />
</div>Code which is causing problem:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">panorama=panoLoader.content;</code><hr />
</div>So I have to do:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">panorama=panoLoader.content as MovieClip</code><hr />
</div>Ok, I can fix it like that for that now, but why?<br />
What's wrong. In my first project I didn't get this error. What may be causing it?<br />
<br />
-- <br />
Regards<br />
MM</div>

]]></content:encoded>
			<category domain="http://flashpanoramas.com/forum/forumdisplay.php?f=7">Flash Panorama Player</category>
			<dc:creator>maciej.m</dc:creator>
			<guid isPermaLink="true">http://flashpanoramas.com/forum/showthread.php?t=2637</guid>
		</item>
		<item>
			<title>PicMenu - Close on Mouse Off</title>
			<link>http://flashpanoramas.com/forum/showthread.php?t=2636&amp;goto=newpost</link>
			<pubDate>Thu, 19 Nov 2009 07:22:03 GMT</pubDate>
			<description><![CDATA[I would like the PicMenu to close on an "onOut" event.  Currently, it seems you can only apply this event to the individual thumbnail images and not...]]></description>
			<content:encoded><![CDATA[<div>I would like the PicMenu to close on an &quot;onOut&quot; event.  Currently, it seems you can only apply this event to the individual thumbnail images and not the actual menu.  <br />
<br />
Is there some obvious way that I am overlooking, maybe using the external command... &quot;picmenu.collapse=T&quot; to close the menu?<br />
<br />
Any thoughts are appreciated.<br />
<br />
Brian</div>

]]></content:encoded>
			<category domain="http://flashpanoramas.com/forum/forumdisplay.php?f=7">Flash Panorama Player</category>
			<dc:creator>BrianC</dc:creator>
			<guid isPermaLink="true">http://flashpanoramas.com/forum/showthread.php?t=2636</guid>
		</item>
		<item>
			<title>Can longtail flv player be integrated to fpp?</title>
			<link>http://flashpanoramas.com/forum/showthread.php?t=2635&amp;goto=newpost</link>
			<pubDate>Thu, 19 Nov 2009 07:21:46 GMT</pubDate>
			<description><![CDATA[First I must introduce the longtail flv player roughly or you could see it in www.longtailvideo.com by yourself.It's a flv player which owns a cache...]]></description>
			<content:encoded><![CDATA[<div>First I must introduce the longtail flv player roughly or you could see it in <a href="http://www.longtailvideo.com" target="_blank">www.longtailvideo.com</a> by yourself.It's a flv player which owns a cache that makes it superior to the original flvplayer in fpp.What is more exciting is that it's open source,so we could even modify the ActionScript.<br />
<br />
 I want to load a youtube link as: <a href="http://www.youtube.com/v/mLeOiDF99Yo" target="_blank">http://www.youtube.com/v/mLeOiDF99Yo</a><br />
<br />
But it isn't working when the code is as follows:<br />
&lt;spot id=&quot;21&quot; pan=&quot;220&quot; tilt=&quot;0&quot; scaleX=&quot;0.5&quot; scaleY=&quot;0.5&quot; linked=&quot;video/boat_quay&quot; url=&quot;files/player-viral.swf?file=http:/www.youtube.com/v/mLeOiDF99Yo&quot; /&gt;<br />
<br />
I'm pretty sure the paths are right.<br />
Please help me. Thank you!</div>

]]></content:encoded>
			<category domain="http://flashpanoramas.com/forum/forumdisplay.php?f=11">FPP plugins</category>
			<dc:creator>cp22279</dc:creator>
			<guid isPermaLink="true">http://flashpanoramas.com/forum/showthread.php?t=2635</guid>
		</item>
		<item>
			<title>New Flash 10.1 Beta Bad behaviour.</title>
			<link>http://flashpanoramas.com/forum/showthread.php?t=2634&amp;goto=newpost</link>
			<pubDate>Wed, 18 Nov 2009 13:14:52 GMT</pubDate>
			<description>I have tested the new Beta version FLash 10.1 and found that it behaves very bad on my MacBookPro with OS 10.4.11

I have done some more testing in...</description>
			<content:encoded><![CDATA[<div>I have tested the new Beta version FLash 10.1 and found that it behaves very bad on my MacBookPro with OS 10.4.11<br />
<br />
I have done some more testing in different browsers. The first thing I noticed was a very weird behaviour in Fullscreen on Safari. It is like it feels hard to start panning but suddenly it takes a jump running 50-90 degree by itself. You may get stuck at nadir or zenith and it is very hard to keep the position at the horizont while panning.<br />
<br />
OPERA seem to be the only browser which performs normal. Panning both in browser and Fullscreen is same as in last Flash 10 version. However if I CTRL click in the pano the window crashes.<br />
<br />
Firefox is the worst one. I can not at all pan the panorama during loading. That is both for KRPano at 360cities and WWP and for FPP at panoramas.dk.<br />
Also a test on Pano2VR does the same.<br />
Loading is very slow, One of my pages which loads in 9 seconds with Safari takes 26 in Firefox 3.5.<br />
The problem with selfrunning behaviour, is very severe both in browser and in Fullscreen.<br />
<br />
WWP KRpanos are very jerky in browser but they pan smooth in Fullscreen and they do not have the selfrunning behaviour I can see both at 360cities (KRPano) and at panoramas.dk FPP.<br />
<br />
I know they use a very low setting for the mouse sensitivity so that must be the reason.<br />
Actually I have a medium setting for this at panoramas.dk which is lower than the default FPP setting (friction 90)<br />
<br />
I tested it on my page about cubeface sizes.<br />
<a href="http://www.panoramas.dk/panorama/cubeface-sizes/" target="_blank">http://www.panoramas.dk/panorama/cubeface-sizes/</a><br />
As you can see I use 0,82 for friction. If I set it to default 90 the pano will run by itself from nadir to zenith just with a small push and I can easy push it 360 degree running by it self.<br />
<br />
In Safari the only problem seems to be the selfrunning panning but it only<br />
happens in fullscreen.<br />
<br />
I hope this version is not one which comes out before it has been tested much more.<br />
<br />
Hans</div>

]]></content:encoded>
			<category domain="http://flashpanoramas.com/forum/forumdisplay.php?f=7">Flash Panorama Player</category>
			<dc:creator>HansNyberg</dc:creator>
			<guid isPermaLink="true">http://flashpanoramas.com/forum/showthread.php?t=2634</guid>
		</item>
		<item>
			<title>Not all hotspots are loaded ???</title>
			<link>http://flashpanoramas.com/forum/showthread.php?t=2633&amp;goto=newpost</link>
			<pubDate>Tue, 17 Nov 2009 09:25:37 GMT</pubDate>
			<description>Hi, I made a small map with hotspots on it (without any panorama...) just to have a small animation to clikc on the frontpage and to choose wich...</description>
			<content:encoded><![CDATA[<div>Hi, I made a small map with hotspots on it (without any panorama...) just to have a small animation to clikc on the frontpage and to choose wich panorama to see first.<br />
Tha problem is that all the hotspots (8) are not loaded each time??<br />
Some times there is only 2 and if you refresh the 8 comes up...<br />
I really don't understand why, does someone have a solution ???<br />
Many thanx !!!<br />
<br />
The map : <a href="http://www.360images.fr/planleclerc360/plan.html" target="_blank">http://www.360images.fr/planleclerc360/plan.html</a></div>

]]></content:encoded>
			<category domain="http://flashpanoramas.com/forum/forumdisplay.php?f=7">Flash Panorama Player</category>
			<dc:creator>le GROS jéjé</dc:creator>
			<guid isPermaLink="true">http://flashpanoramas.com/forum/showthread.php?t=2633</guid>
		</item>
		<item>
			<title>Why do my pans look so crap in low quality</title>
			<link>http://flashpanoramas.com/forum/showthread.php?t=2632&amp;goto=newpost</link>
			<pubDate>Mon, 16 Nov 2009 22:09:11 GMT</pubDate>
			<description>I generally use medium quality in my pans for rotation. I would like to use low quality (for performance obviously) but they look crap compared to...</description>
			<content:encoded><![CDATA[<div>I generally use medium quality in my pans for rotation. I would like to use low quality (for performance obviously) but they look crap compared to some Ive seen. Loads of obvious aliasing and horrible shimmering. I dont sharpen in Photoshop but I do use almost maximum focus (350/400) on cature one (3.6)<br />
<br />
What am I missing? How do I get better quality using &quot;low&quot; or faster perfrormance using &quot;medium&quot;<br />
<br />
Cheers<br />
<br />
Masten</div>

]]></content:encoded>
			<category domain="http://flashpanoramas.com/forum/forumdisplay.php?f=7">Flash Panorama Player</category>
			<dc:creator>masten</dc:creator>
			<guid isPermaLink="true">http://flashpanoramas.com/forum/showthread.php?t=2632</guid>
		</item>
		<item>
			<title>pano remove</title>
			<link>http://flashpanoramas.com/forum/showthread.php?t=2631&amp;goto=newpost</link>
			<pubDate>Mon, 16 Nov 2009 00:29:24 GMT</pubDate>
			<description>anyone knows how to remove pano and smart plugin(flvplayer) in embed pano example?
i want 2 sections: one contact and the other one panos.
when...</description>
			<content:encoded><![CDATA[<div>anyone knows how to remove pano and smart plugin(flvplayer) in embed pano example?<br />
i want 2 sections: one contact and the other one panos.<br />
when switch between sections i want pano to be removed completely toghether with flvplayer.</div>

]]></content:encoded>
			<category domain="http://flashpanoramas.com/forum/forumdisplay.php?f=7">Flash Panorama Player</category>
			<dc:creator>DataSecure</dc:creator>
			<guid isPermaLink="true">http://flashpanoramas.com/forum/showthread.php?t=2631</guid>
		</item>
		<item>
			<title>Video in Standalone (projectors)</title>
			<link>http://flashpanoramas.com/forum/showthread.php?t=2630&amp;goto=newpost</link>
			<pubDate>Fri, 13 Nov 2009 09:59:57 GMT</pubDate>
			<description>I just discovered while doing some experiments with the flvplayer that it does not at all work in the Standalone Flashplayer.

I am surprised that I...</description>
			<content:encoded><![CDATA[<div>I just discovered while doing some experiments with the flvplayer that it does not at all work in the Standalone Flashplayer.<br />
<br />
I am surprised that I can not find anything about this in the Forum archive,<br />
<br />
In addition comes the problem with using non distorted videos in fullscreen.<br />
Unless you use distorted the videos will go fullscreen. I know there is a workaround for this but it involves  working in Adobe Flash and adding a line tin the .fla file.  That should be implemented in the standard player.<br />
<br />
Hans</div>

]]></content:encoded>
			<category domain="http://flashpanoramas.com/forum/forumdisplay.php?f=7">Flash Panorama Player</category>
			<dc:creator>HansNyberg</dc:creator>
			<guid isPermaLink="true">http://flashpanoramas.com/forum/showthread.php?t=2630</guid>
		</item>
		<item>
			<title>PicMenu - alter the highlight of the image</title>
			<link>http://flashpanoramas.com/forum/showthread.php?t=2629&amp;goto=newpost</link>
			<pubDate>Thu, 12 Nov 2009 14:44:41 GMT</pubDate>
			<description>Hello

How to alter the highlight (distinction) of the image  in PicMenu after clicking in another  hotspot (arrow)?

Below the code.
Is this good...</description>
			<content:encoded><![CDATA[<div>Hello<br />
<br />
How to alter the highlight (distinction) of the image  in PicMenu after clicking in another  hotspot (arrow)?<br />
<br />
Below the code.<br />
Is this good tracks?<br />
<br />
external.PicMenu.image=panoramaX;<br />
<br />
Regards<br />
Marko</div>

]]></content:encoded>
			<category domain="http://flashpanoramas.com/forum/forumdisplay.php?f=7">Flash Panorama Player</category>
			<dc:creator>Marko</dc:creator>
			<guid isPermaLink="true">http://flashpanoramas.com/forum/showthread.php?t=2629</guid>
		</item>
		<item>
			<title>How to embed panos in Flash?</title>
			<link>http://flashpanoramas.com/forum/showthread.php?t=2627&amp;goto=newpost</link>
			<pubDate>Tue, 10 Nov 2009 07:48:09 GMT</pubDate>
			<description><![CDATA[Hi, 

I am referring to the "embedPano.fla" example which is the FPP package. This example works fine but when I replace the existing pano with my...]]></description>
			<content:encoded><![CDATA[<div>Hi, <br />
<br />
I am referring to the &quot;embedPano.fla&quot; example which is the FPP package. This example works fine but when I replace the existing pano with my pano, which uses an xml file, the pano wouldn't appear properly on the web browser. When I run it on Flash CS3 by typing Ctrl+Enter, I can see the panorama but not on the web browser. Could the reason be different versions of Flash Players? My Flash CS3 seems to use Flash Player 9 and my web browser uses Flash Player 10. <br />
<br />
What I am trying to do is to make my pano communicate with external .swf via ExternalInterface. <br />
<br />
Could anybody please have a look at my example? <br />
 <br />
You can view the original pano here:<br />
<a href="http://www.vr-net.co.kr/biz/fpp/vr.html" target="_blank">http://www.vr-net.co.kr/biz/fpp/vr.html</a> <br />
<br />
and the embedded version: <br />
<a href="http://www.vr-net.co.kr/biz/fpp/embedPano.html" target="_blank">http://www.vr-net.co.kr/biz/fpp/embedPano.html</a><br />
<br />
You can download my example from the following link: <br />
<a href="http://www.vr-net.co.kr/biz/fpp/embedPano.zip" target="_blank">http://www.vr-net.co.kr/biz/fpp/embedPano.zip</a><br />
<br />
Any comments would be appreciated!<br />
<br />
Hyung</div>

]]></content:encoded>
			<category domain="http://flashpanoramas.com/forum/forumdisplay.php?f=7">Flash Panorama Player</category>
			<dc:creator>hyung</dc:creator>
			<guid isPermaLink="true">http://flashpanoramas.com/forum/showthread.php?t=2627</guid>
		</item>
		<item>
			<title>picMenu</title>
			<link>http://flashpanoramas.com/forum/showthread.php?t=2626&amp;goto=newpost</link>
			<pubDate>Mon, 09 Nov 2009 13:15:13 GMT</pubDate>
			<description><![CDATA[Hallo,

I have trouble with plug-in <picMenu> together with Fullsreen mode. When I click on thumbnail "Pohled2" and then fullscreen (click right...]]></description>
			<content:encoded><![CDATA[<div>Hallo,<br />
<br />
I have trouble with plug-in &lt;picMenu&gt; together with Fullsreen mode. When I click on thumbnail &quot;Pohled2&quot; and then fullscreen (click right mouse button) the number of thumbnails extends 3x. Do you know where I made a mistake?<br />
<br />
look at this html, xml: <a href="http://www.mediumsoft.cz/aa/index.html" target="_blank">http://www.mediumsoft.cz/aa/index.html</a><br />
<br />
<br />
Thx, Petr</div>

]]></content:encoded>
			<category domain="http://flashpanoramas.com/forum/forumdisplay.php?f=11">FPP plugins</category>
			<dc:creator>psindel</dc:creator>
			<guid isPermaLink="true">http://flashpanoramas.com/forum/showthread.php?t=2626</guid>
		</item>
		<item>
			<title>Using Plugins</title>
			<link>http://flashpanoramas.com/forum/showthread.php?t=2625&amp;goto=newpost</link>
			<pubDate>Mon, 09 Nov 2009 07:03:05 GMT</pubDate>
			<description>Hello

Can you show an example of the use of plugins?

That is an example of code structure</description>
			<content:encoded><![CDATA[<div>Hello<br />
<br />
Can you show an example of the use of plugins?<br />
<br />
That is an example of code structure</div>

]]></content:encoded>
			<category domain="http://flashpanoramas.com/forum/forumdisplay.php?f=11">FPP plugins</category>
			<dc:creator>GokhanSCN</dc:creator>
			<guid isPermaLink="true">http://flashpanoramas.com/forum/showthread.php?t=2625</guid>
		</item>
	</channel>
</rss>
