Flash CS3 - Flash CS4

Free tutorials and scripts for all.
Actionscript 3.0

How to read and view a RSS with Flash CS3

This is a discussion on How to read and view a RSS with Flash CS3 within the Tutorials forums, part of the Flash English category; Good day to all. A while ago, we saw how to read an XML file loaded with Flash CS3 . We ...


Go Back   Forum Flash CS3 Flash CS4 > Flash CS3 Flash CS4 > Flash English > Tutorials

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 25-09-07, 16:54
Administrator
 
Join Date: Jul 2007
Location: Cesena
Posts: 4,535
Rep Power: 6
Flep is on a distinguished road
How to read and view a RSS with Flash CS3

Good day to all.
A while ago, we saw how to read an XML file loaded with Flash CS3 .
We also saw how to use a timer.
Conclusion: we have an RSS (nothing else then an XML file) which contains data of the last 10 articles and we have a timer"let"s realise a slideshow of the titles!!
I will use the RSS of this site.  You can see it here:  Last 10 articles
As the RSS gives us a node attribute which contains the article"s title and a node attribute <url> which contains the url to the article, our slideshow will have each article clickable and linked to the right article.<br /> <br /> Let"s see how" I create a FLA and save it as "rss.fla". Inside it, I have some graphics but the important thing is a dynamic text field named "title_txt" to which I will assign the value of the node <title>, node child of <head> in the XML created by the RSS.<br /> I create a Document Class, an AS file saved as "Rss.as", implemented the following way:<br /> <div style="margin:20px; margin-top:5px"> <div class="smallfont" style="margin-bottom:2px">Code:</div> <pre class="alt2" dir="ltr" style=" margin: 0px; padding: 6px; border: 1px inset; width: 640px; height: 498px; text-align: left; overflow: auto">package { import flash.display.MovieClip; import flash.utils.Timer; import flash.events.TimerEvent; import flash.events.MouseEvent; import flash.events.Event; import flash.text.TextField; import flash.text.TextFieldAutoSize; import flash.text.AntiAliasType; import flash.text.TextFormat; import flash.net.URLRequest; import flash.net.navigateToURL; public class Rss extends MovieClip { private var xml:LoadingXML; public var objects_array:Array; private var clips_array:Array; private var container_mc:MovieClip; private var timer:Timer; private var id:int=0; public function Rss() { init(); } private function init():void { stage.frameRate=31; objects_array=new Array(); clips_array=new Array(); createContainer(); loadXML(); } private function createContainer():void { container_mc=new MovieClip(); addChild(container_mc); swapChildren(angles_mc,container_mc); } private function loadXML():void { xml=new LoadingXML(this); } public function createClipsAndFields():void { for(var i:int=0;i < objects_array.length;i++) { var clip:MovieClip=new MovieClip(); container_mc.addChild(clip); clip.addChild(getTF(i)); clips_array.push(clip); } positionClips(); var time:TimerEvent; go(time); } private function getTF(i:int):TextField { var field:TextField=new TextField(); field.autoSize=TextFieldAutoSize.LEFT; field.multiline=false; field.selectable=false; field.embedFonts=true; field.background=true; field.antiAliasType=AntiAliasType.ADVANCED; field.backgroundColor=0xCB4425; field.defaultTextFormat=getFormat(); field.text=objects_array[i].titolo; return(field); } private function getFormat():TextFormat { var tf:TextFormat=new TextFormat(); tf.font='Lucida Sans'; tf.size=22; tf.color=0xFFFFFF; return(tf); } private function positionClips():void { for(var i:int=0;i < clips_array.length;i++) { clips_array[i].id=i; clips_array[i].x=(stage.stageWidth-clips_array[i].width)/2; clips_array[i].y=stage.stageHeight+clips_array[i].height; clips_array[i].alpha=0; clips_array[i].addEventListener(MouseEvent.MOUSE_DOWN,goURL); } } private function startTimer():void { timer=new Timer(3000,1); timer.addEventListener(TimerEvent.TIMER,go); timer.start(); } private function go(t:TimerEvent):void { clips_array[id].addEventListener(Event.ENTER_FRAME,fadeIn); var i:int=id-1; if(i < 0) i=clips_array.length-1; clips_array[i].addEventListener(Event.ENTER_FRAME,fadeOut); } private function fadeIn(e:Event):void { var arrA:Number=1; var da:Number=arrA-e.currentTarget.alpha; var aa:Number=da*.2; e.currentTarget.alpha+=aa; var arrY:Number=stage.stageHeight/2-e.currentTarget.height/2; var dy:Number=arrY-e.currentTarget.y; var ay:Number=dy*.2; e.currentTarget.y+=ay; if(Math.abs(dy)<=.2) { e.currentTarget.removeEventListener(Event.ENTER_FRAME,fadeIn); e.currentTarget.y=arrY; e.currentTarget.alpha=arrA; id++; if(id>=clips_array.length) id=0; startTimer(); } } private function fadeOut(e:Event):void { var arrA:Number=0; var da:Number=arrA-e.currentTarget.alpha; var aa:Number=da*.2; e.currentTarget.alpha+=aa; var arrX:Number=stage.stageWidth; var dx:Number=arrX-e.currentTarget.x; var ax:Number=dx*.2; e.currentTarget.x+=ax; if(Math.abs(dx)<=.2) { e.currentTarget.removeEventListener(Event.ENTER_FRAME,fadeOut); e.currentTarget.x=(stage.stageWidth-e.currentTarget.width)/2; e.currentTarget.y=stage.stageHeight+e.currentTarget.height; e.currentTarget.alpha=arrA; } } private function goURL(m:MouseEvent):void { var url:String=objects_array[m.currentTarget.id].link; var request:URLRequest=new URLRequest(url); navigateToURL(request); } } }</pre> </div>I then have my LoadingXML class (used more then once in this site), implemented the following way:<br /> <div style="margin:20px; margin-top:5px"> <div class="smallfont" style="margin-bottom:2px">Code:</div> <pre class="alt2" dir="ltr" style=" margin: 0px; padding: 6px; border: 1px inset; width: 640px; height: 498px; text-align: left; overflow: auto">package { import flash.display.Loader; import flash.display.MovieClip; import flash.events.*; import flash.net.URLLoader; import flash.net.URLRequest; import flash.xml.*; public class LoadingXML extends MovieClip { private var Root:MovieClip; public function LoadingXML(m:MovieClip) { Root=m; this.loadXML(); } private function loadXML():void { var loader:URLLoader=new URLLoader(); loader.addEventListener(Event.COMPLETE,completeHandler); var request:URLRequest=new URLRequest ('http://www.flepstudio.org/english/option,com_rss/feed,OPML/no_html,1.html'); try { loader.load(request); } catch(error:Error) { trace('Unable to load requested document.'); } } private function completeHandler(event:Event):void { var loader:URLLoader=URLLoader(event.target); var result:XML=new XML(loader.data); var myXML:XMLDocument=new XMLDocument(); myXML.ignoreWhite=true; myXML.parseXML(result.toXMLString()); var node:XMLNode=myXML.firstChild; var numeroArticoli:int=int(node.firstChild.nextSibling.childNodes.length); for(var i:int=0;i < numeroArticoli;i++) { var obj:Object=new Object(); obj.titolo=node.firstChild.nextSibling.childNodes[i].attributes['title']; obj.link=node.firstChild.nextSibling.childNodes[i].attributes['url']; Root.objects_array.push(obj); } Root.createClipsAndFields(); } } }</pre> </div>The result (click a title to view the right link taken from the RSS):<br /> <div align="center"><object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" name="obj1" width="550" height="200" border="0" id="obj1"><br /> <param name="movie" value="http://www.flepstudio.org/swf/rss_eng.swf"><br /> <param name="quality" value="High"><br /> <embed src="http://www.flepstudio.org/swf/rss_eng.swf" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="obj1" width="550" height="200"><br /> <br /> </object></div><b>Let"s analyse the code:<br /> <br /> Rss.as Class<br /> <br /> Properties</b><br /> An instance of the LoadingXML class which will load, read and view the XML data <br /> private var xml:LoadingXML;<br /> an array to store the XML data<br /> public var objects_array:Array;<br /> an Array to store the MovieClip, to be able to keep track of them and recall them when needed<br /> private var clips_array:Array;<br /> a MovieClip used as container of all the MovieClip created <br /> private var container_mc:MovieClip;<br /> a Timer<br /> private var timer:Timer;<br /> a numerical variable which contains a value increased so to run trough the index arrays <br /> private var id:int=0; <br /> <br /> <b>Methods</b><br /> init();<br /> I impost the frame rate <br /> stage.frameRate=31;<br /> I initialise the 2 arrays<br /> objects_array=new Array();<br /> clips_array=new Array();<br /> I call the method createContainer<br /> createContainer();<br /> I call the method loadXML <br /> loadXML(); <br /> <br /> createContainer();<br /> I create the MovieClip container <br /> container_mc=new MovieClip();<br /> I add it to the DisplayObject (otherwise it would not be visible) <br /> addChild(container_mc);<br /> I swap levels of the MovieClips "container_mc" and "angles_mc" which is a MovieClip containing graphics in "rss.fla"<br /> swapChildren(angles_mc,container_mc); <br /> <br /> loadXML();<br /> I create an instance of LoadingXML class passing it the value of _root.LoadingXML which once done, will call a Rss.as method "createClipsAndFields"<br /> xml=new LoadingXML(this); <br /> createClipsAndFields();<br /> I open a cycle with the objects_array length (populate by the LoadingXML class) as a maximum iteration<br /> for(var i:int=0;i < objects_array.length;i++)<br /> {<br /> I create a MovieClip<br /> var clip:MovieClip=new MovieClip();<br /> I add it to container_mc <br /> container_mc.addChild(clip);<br /> I add to the clip a text field created by the function "getTF" and pass it the value of "i", the iteration of the cycle at that moment<br /> clip.addChild(getTF(i));<br /> I add the clip to clips_array<br /> clips_array.push(clip);<br /> }<br /> I call the method positonClips<br /> positionClips();<br /> I could directly call the method go(), but to do it, I will need to first create a ghost instance of TimerEvent., as the method go() will be called from a timer except the first time and requires a parameter tipe TimerEvent<br /> var time:TimerEvent;<br /> now I can call the method go() passing it the instance TimerEvent<br /> go(time); <br /> <br /> getTF(i:int):TextField<br /> I create a dynamic text field and assign to it the properties needed <br /> var field:TextField=new TextField();<br /> field.autoSize=TextFieldAutoSize.LEFT;<br /> field.multiline=false;<br /> field.selectable=false;<br /> field.embedFonts=true;<br /> field.background=true;<br /> field.backgroundColor=0xCB4425;<br /> I assign a TextFormat to the text field calling the method getFormat which will return an instance of TextFormat<br /> field.defaultTextFormat=getFormat();<br /> I assign the text to the field: the value of index "i" (returned in the cycle of the method createClipsAndFields as already seen) of objects_array containing the instance of the Object class with properties assigned in runtime by the loadingXML class at the lecture of the XML file<br /> field.text=objects_array[i].titolo;<br /> I return the text field<br /> return(field); <br /> getFormat():TextFormat<br /> I create an instance of TextFormat <br /> var tf:TextFormat=new TextFormat();<br /> I assign to them a font so that the font is visible to all users and embedded in the swf. See the article: <a href="http://www.flepstudio.org/english/tutorials/mix/emded-fonts-into-swf-2007061540.html"><strong>How to embed fonts in the SWF with Flash CS3</strong></a><br /> tf.font='Hypatia Sans Pro Semibold';<br /> I assign a font dimension <br /> tf.size=24;<br /> I assign a color <br /> tf.color=0xFFFFFF;<br /> I return the TextFormat<br /> return(tf);<br /> <br /> positionsClips();<br /> I create a cycle with clips_array length as the maximum iteration <br /> for(var i:int=0;i < clips_array.length;i++)<br /> I assign a property to the MovieClip, named "id" equal to clips_array index "i"<br /> clips_array[i].id=i;<br /> I position the MovieClips<br /> clips_array[i].x=(stage.stageWidth-clips_array[i].width)/2;<br /> clips_array[i].y=stage.stageHeight+clips_array[i].height;<br /> I impost alpha to zero <br /> clips_array[i].alpha=0;<br /> I add a listener to the event MOUSE_DOWN to the clip which will call the method goURL() <br /> clips_array[i].addEventListener(MouseEvent.MOUSE_DOWN,goURL); <br /> <br /> startTimer();<br /> I create an instance of Timer with the values of 3 seconds and one call<br /> timer=new Timer(3000,1);<br /> I start the timer which call the function go() which explains the use of the ghost instance of TimerEvent explained earlier on<br /> timer.addEventListener(TimerEvent.TIMER,go);<br /> timer.start(); <br /> <br /> go();<br /> I create an interval ENTER_FRAME to the index "id""s clip, numerical variable explained earlier on<br /> clips_array[id].addEventListener(Event.ENTER_FRAME,fadeIn);<br /> Pay attention"as I want a data clip disappears as the next one appears, I will use "id-1" to call the clip which needs to disappear. If "id" equal zero, "id-1" would then be negative which would be impossible as an array do not contain a negative index. I will use a conditional logic that if "id" equal zero, "id-1" would not result to -1 but to the last clip of the array. I create a numerical variable which checks the value of "id" and if "id" is equal to zero, I pass a value equal to the last index of clips_array<br /> var i:int=id-1;<br /> if(i < 0)<br /> i=clips_array.length-1;<br /> At the same time, I will create an interval ENTER_FRAME to the clip which needs to disappear<br /> clips_array[i].addEventListener(Event.ENTER_FRAME,fadeOut); <br /> <br /> fadeIn();<br /> I apply the inertia effect to the clip"s y and alpha<br /> var arrA:Number=1;<br /> var da:Number=arrA-e.currentTarget.alpha;<br /> var aa:Number=da*.2;<br /> e.currentTarget.alpha+=aa;<br /> var arrY:Number=stage.stageHeight/2-e.currentTarget.height/2;<br /> var dy:Number=arrY-e.currentTarget.y;<br /> var ay:Number=dy*.2;<br /> e.currentTarget.y+=ay;<br /> if(Math.abs(dy)<=.2)<br /> {<br /> e.currentTarget.removeEventListener(Event.ENTER_FR AME,fadeIn);<br /> e.currentTarget.y=arrY;<br /> e.currentTarget.alpha=arrA;<br /> arrived at destination I increase the variable "id"<br /> id++;<br /> I check that it is not over the maximum index of clips_array<br /> if(id>=clips_array.length)<br /> If it is bigger or equal I reset "id" to zero <br /> id=0;<br /> I recall the function startTimer<br /> startTimer();<br /> } <br /> <br /> fadeOut();<br /> I apply the inertia effect to the clip"s x and alpha<br /> var arrA:Number=0;<br /> var da:Number=arrA-e.currentTarget.alpha;<br /> var aa:Number=da*.2;<br /> e.currentTarget.alpha+=aa;<br /> var arrX:Number=stage.stageWidth;<br /> var dx:Number=arrX-e.currentTarget.x;<br /> var ax:Number=dx*.2;<br /> e.currentTarget.x+=ax;<br /> if(Math.abs(dx)<=.2)<br /> {<br /> e.currentTarget.removeEventListener(Event.ENTER_FR AME,fadeOut);<br /> e.currentTarget.x=(stage.stageWidth-e.currentTarget.width)/2;<br /> e.currentTarget.y=stage.stageHeight+e.currentTarge t.height;<br /> e.currentTarget.alpha=arrA;<br /> } <br /> <br /> goURL(m:MouseEvent);<br /> I create a string variable inside which I insert the value of index (with number equal to the "id" property added to each clip) of the link property of the array"s object<br /> var url:String=objects_array[m.currentTarget.id].link;<br /> I create an instance of the URLRequest class<br /> var request:URLRequest=new URLRequest(url);<br /> and call the browser<br /> navigateToURL(request); <br /> <br /> Easier to do then explain :P <br /> <br /> Source files:<!-- google_ad_section_end --></div></td> </tr> </table> <!-- / message --> <!-- attachments --> <div style="padding:6px"> <fieldset class="fieldset"> <legend>Attached Files</legend> <table cellpadding="0" cellspacing="3" border="0"> <tr> <td><img class="inlineimg" src="http://www.flepstudio.org/forum/images/attach/zip.gif" alt="File Type: zip" width="16" height="16" border="0" style="vertical-align:baseline" /></td> <td><a href="http://www.flepstudio.org/forum/attachments/tutorials/580d1212682504-how-read-view-rss-flash-cs3-flashcs3_and_rss.zip">FlashCS3_and_RSS.zip</a> (64.8 KB, 75 views)</td> </tr> </table><br /><script type="text/javascript"><!-- google_ad_client = "pub-6732627283778497"; /* forum_attachments */ google_ad_slot = "0213131272"; google_ad_width = 234; google_ad_height = 60; //--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> </fieldset> </div> <!-- / attachments --> <!-- sig --> <div> __________________<br /> <!-- google_ad_section_start(weight=ignore) --><p> </p><br /> <b><a rel="nofollow" href="http://www.amazon.com/gp/redirect.html?ie=UTF8&location=http%3A%2F%2Fwww.amazon.com%2FEssential-ActionScript-3-0%2Fdp%2F0596526946%3Fie%3DUTF8%26s%3Dbooks%26qid% 3D1206481471%26sr%3D8-1&tag=fleps-20&linkCode=ur2&camp=1789&creative=9325">I recommend: Essential Actionscript 3.0</a><img src="http://www.assoc-amazon.com/e/ir?t=fleps-20&l=ur2&o=1" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></b><br /> <br /> - I do not reply technicians pvt messages. Open a thread !<br /> - Non rispondo ai messaggi privati con domande tecniche. Apri una discussione sul forum !<!-- google_ad_section_end --> </div> <!-- / sig --> <!-- edit note --> <div class="smallfont"> <hr size="1" style="color:#E1E1E1; background-color:#E1E1E1" /> <em> Last edited by Flep; 28-08-08 at <span class="time">06:21</span>.. </em> </div> <!-- / edit note --> <div style="margin-top: 10px" align="right"> <!-- controls --> <div style="float:left"><a rel="nofollow" href="http://digg.com/submit?phase=2&url=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%232160&title=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/digg.gif" alt="Digg this Post!" border="0" /></a><a rel="nofollow" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%232160&title=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/delicious.gif" alt="Add Post to del.icio.us" border="0" /></a><a rel="nofollow" href="http://technorati.com/faves/?add=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%232160" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/technorati.gif" alt="Bookmark Post in Technorati" border="0" /></a><a rel="nofollow" href="http://furl.net/storeIt.jsp?u=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%232160&t=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/furl.gif" alt="Furl this Post!" border="0" /></a></div> <a href="http://www.flepstudio.org/forum/newreply.php?do=newreply&p=2160" rel="nofollow"><img src="http://www.flepstudio.org/forum/images/buttons/quote.gif" alt="Reply With Quote" border="0" /></a> <!-- / controls --> </div> <!-- message, attachments, sig --> </td> </tr> </table> <p><div align="center" class="rounded" style=" color:#FFF; background-color:#333; "> <script type="text/javascript"> <!-- Begin rnd.today=new Date(); rnd.seed=rnd.today.getTime(); function rnd() { rnd.seed = (rnd.seed*9301+49297) % 233280; return rnd.seed/(233280.0); }; function rand(number) { var result = Math.ceil(rnd()*number); if (!result)result++; return result }; var ad_cnt1 = 14; var ad1 = rand(ad_cnt1); var link1; var adBanner1; var width1 var height1 if (ad1==1) { link1="http://store.flepstudio.org/"; adBanner1="http://www.flepstudio.org/images/banners/banner_728x90_2.jpg"; width1="728"; height1="90"; alt1="Professional Flash Files"; } if (ad1==2) { link1="http://store.flepstudio.org/"; adBanner1="http://www.flepstudio.org/images/banners/banner_728x90_grey.jpg"; width1="728"; height1="90"; alt1="Professional Flash Files"; } if (ad1==3) { link1="http://www.kqzyfj.com/click-3268277-10589138"; adBanner1="http://www.ftjcfx.com/image-3268277-10589138"; width1="728"; height1="90"; alt1="Photoshop CS4"; } if (ad1==4) { link1="http://www.kqzyfj.com/click-3268277-10589136"; adBanner1="http://www.ftjcfx.com/image-3268277-10589136"; width1="728"; height1="90"; alt1="Adobe CS4 Master Collection"; } if (ad1==5) { link1="http://store.flepstudio.org/video/multi-video-player-with-play-list-flash-cs3-actionscript-3/"; adBanner1="http://www.flepstudio.org/images/banners/banner_video_2.jpg"; width1="602"; height1="110"; alt1="Flash Video Player"; } if (ad1==6) { link1="http://www.kqzyfj.com/click-3268277-10589132"; adBanner1="http://www.awltovhc.com/image-3268277-10589132"; width1="728"; height1="90"; alt1="Flash CS4 Professional"; } if (ad1==7) { link1="http://flashden.net?ref=flepstudio"; adBanner1="http://flashden.net/new/images/ms_referral_banners/728x90_FD.jpg"; width1="728"; height1="90"; alt1="Flash Components"; } if (ad1==8) { link1="http://videohive.net?ref=flepstudio"; adBanner1="http://flashden.net/new/images/ms_referral_banners/VH_728x90.jpg"; width1="728"; height1="90"; alt1="Flash Videos"; } if (ad1==9) { link1="http://www.flasheff.com/?ref=0678feee276r30"; adBanner1="http://www.flepstudio.org/images/banners/flashEff.png"; width1="728"; height1="90"; alt1="Flash Components"; } if (ad1==10) { link1="http://www.jumpeyecomponents.com/?ref=0678feee276r30"; adBanner1="http://www.flepstudio.org/images/banners/menu_pack.png"; width1="728"; height1="90"; alt1="Flash Components"; } if (ad1==11) { link1="http://www.jumpeyecomponents.com/?ref=0678feee276r30"; adBanner1="http://www.jumpeyecomponents.com/images/ads/jc/728x90.gif"; width1="728"; height1="90"; alt1="Flash Components"; } if (ad1==12) { link1="http://www.txeff.com/?ref=0678feee276r30"; adBanner1="http://www.jumpeyecomponents.com/images/ads/te/728x90.gif"; width1="728"; height1="90"; alt1="Flash Components"; } if (ad1==13) { link1="http://www.flashloaded.com/?id2=9462038"; adBanner1="http://flashloaded.com/referralprogram/links/images/728x90.jpg"; width1="728"; height1="90"; alt1="Flash Components"; } if (ad1==14) { link1="http://www.bannersnack.com/?ref=152d8a69535r53"; adBanner1="http://flepstudio.org/images/banners/bannersnack_logo.jpg"; width1="728"; height1="90"; alt1="Banner Creator"; } document.write('<center><a href="' + link1 + '" target="_top">'); document.write('<img src="' + adBanner1 + '" width=' + width1 + ' height=' + height1 + ' border=0 alt="' + alt1 + '"></a>'); document.write('</center>'); // End --> </SCRIPT> </div></p> <!-- post 2160 popup menu --> <!-- / post 2160 popup menu --> </div> </div> </div> </div> <!-- / close content container --> <!-- / post #2160 --><!-- post #10444 --> <!-- open content container --> <div align="center"> <div class="page" style="width:95%; text-align:left"> <div style="padding:0px 25px 0px 25px" align="left"> <div id="edit10444" style="padding:0px 0px 6px 0px"> <!-- this is not the last post shown on the page --> <table class="tborder" id="post10444" cellpadding="6" cellspacing="0" border="0" width="100%" align="center"> <tr> <td class="thead" > <div class="normal" style="float:right">   #<a href="http://www.flepstudio.org/forum/10444-post2.html" target="new" id="postcount10444" name="2"><strong>2</strong></a> (<b><a href="/forum/tutorials/451-how-read-view-rss-flash-cs3.html#post10444" title="Link to this Post">permalink</a></b>)   </div> <div class="normal"> <!-- status icon and date --> <a name="post10444"><img class="inlineimg" src="http://www.flepstudio.org/forum/images/statusicon/post_old.gif" alt="Old" border="0" /></a> 11-04-08, 18:11 <!-- / status icon and date --> </div> </td> </tr> <tr> <td class="alt2" style="padding:0px"> <!-- user info --> <table cellpadding="0" cellspacing="6" border="0" width="100%"> <tr> <td nowrap="nowrap"> <div id="postmenu_10444"> <a rel="nofollow" class="bigusername" href="http://www.flepstudio.org/forum/members/barton68.html"><!-- google_ad_section_start(weight=ignore) -->Barton68<!-- google_ad_section_end --></a> <img class="inlineimg" src="http://www.flepstudio.org/forum/images/statusicon/user_offline.gif" alt="Barton68 is offline" border="0" /> </div> <div class="smallfont">Junior Member</div> </td> <td width="100%"> </td> <td valign="top" nowrap="nowrap"> <div class="smallfont"> <div>Join Date: Apr 2008</div> <div> Posts: 2 </div> Rep Power: <span id="reppower_10444_15387">0</span> <div><span id="repdisplay_10444_15387"><img class="inlineimg" src="http://www.flepstudio.org/forum/images/reputation/reputation_pos.gif" alt="Barton68 is on a distinguished road" border="0" /></span></div> <div> </div> </div> </td> </tr> </table> <!-- / user info --> </td> </tr> <tr> <td class="alt1" id="td_post_10444"> <!-- message, attachments, sig --> <!-- icon and title --> <div class="smallfont"> <img class="inlineimg" src="http://www.flepstudio.org/forum/images/icons/icon10.gif" alt="Talking" border="0" /> <strong><!-- google_ad_section_start -->Re: How to read and view a RSS with Flash CS3<!-- google_ad_section_end --></strong> </div> <hr size="1" style="color:#E1E1E1; background-color:#E1E1E1" /> <!-- / icon and title --> <!-- message --> <table cellpadding="10"width="100%" border="0"> <tr> <td width="200" valign="top"><script type="text/javascript"><!-- google_ad_client = "pub-6732627283778497"; /* forum_posts */ google_ad_slot = "7078535848"; google_ad_width = 250; google_ad_height = 250; //--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script></td> <td valign="top"><div id="post_message_10444"><!-- google_ad_section_start -->Any chnace of creating a vertical scrollable RSS news reader?<br /> <br /> <img src="http://www.flepstudio.org/forum/images/smilies/angel.gif" border="0" alt="" title="angel" class="inlineimg" /><!-- google_ad_section_end --></div></td> </tr> </table> <!-- / message --> <div style="margin-top: 10px" align="right"> <!-- controls --> <div style="float:left"><a rel="nofollow" href="http://digg.com/submit?phase=2&url=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2310444&title=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/digg.gif" alt="Digg this Post!" border="0" /></a><a rel="nofollow" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2310444&title=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/delicious.gif" alt="Add Post to del.icio.us" border="0" /></a><a rel="nofollow" href="http://technorati.com/faves/?add=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2310444" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/technorati.gif" alt="Bookmark Post in Technorati" border="0" /></a><a rel="nofollow" href="http://furl.net/storeIt.jsp?u=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2310444&t=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/furl.gif" alt="Furl this Post!" border="0" /></a></div> <a href="http://www.flepstudio.org/forum/newreply.php?do=newreply&p=10444" rel="nofollow"><img src="http://www.flepstudio.org/forum/images/buttons/quote.gif" alt="Reply With Quote" border="0" /></a> <!-- / controls --> </div> <!-- message, attachments, sig --> </td> </tr> </table> <!-- post 10444 popup menu --> <!-- / post 10444 popup menu --> </div> </div> </div> </div> <!-- / close content container --> <!-- / post #10444 --><!-- post #10702 --> <!-- open content container --> <div align="center"> <div class="page" style="width:95%; text-align:left"> <div style="padding:0px 25px 0px 25px" align="left"> <div id="edit10702" style="padding:0px 0px 6px 0px"> <!-- this is not the last post shown on the page --> <table class="tborder" id="post10702" cellpadding="6" cellspacing="0" border="0" width="100%" align="center"> <tr> <td class="thead" > <div class="normal" style="float:right">   #<a href="http://www.flepstudio.org/forum/10702-post3.html" target="new" id="postcount10702" name="3"><strong>3</strong></a> (<b><a href="/forum/tutorials/451-how-read-view-rss-flash-cs3.html#post10702" title="Link to this Post">permalink</a></b>)   </div> <div class="normal"> <!-- status icon and date --> <a name="post10702"><img class="inlineimg" src="http://www.flepstudio.org/forum/images/statusicon/post_old.gif" alt="Old" border="0" /></a> 21-04-08, 09:39 <!-- / status icon and date --> </div> </td> </tr> <tr> <td class="alt2" style="padding:0px"> <!-- user info --> <table cellpadding="0" cellspacing="6" border="0" width="100%"> <tr> <td nowrap="nowrap"> <div id="postmenu_10702"> <a rel="nofollow" class="bigusername" href="http://www.flepstudio.org/forum/members/flep.html"><!-- google_ad_section_start(weight=ignore) -->Flep<!-- google_ad_section_end --></a> <img class="inlineimg" src="http://www.flepstudio.org/forum/images/statusicon/user_offline.gif" alt="Flep is offline" border="0" /> </div> <div class="smallfont">Administrator</div> </td> <td width="100%"> </td> <td valign="top" nowrap="nowrap"> <div class="smallfont"> <div>Join Date: Jul 2007</div> <div>Location: Cesena</div> <div> Posts: 4,535 </div> Rep Power: <span id="reppower_10702_1">6</span> <div><span id="repdisplay_10702_1"><img class="inlineimg" src="http://www.flepstudio.org/forum/images/reputation/reputation_pos.gif" alt="Flep is on a distinguished road" border="0" /></span></div> <div> </div> </div> </td> </tr> </table> <!-- / user info --> </td> </tr> <tr> <td class="alt1" id="td_post_10702"> <!-- message, attachments, sig --> <!-- icon and title --> <div class="smallfont"> <strong><!-- google_ad_section_start -->Re: How to read and view a RSS with Flash CS3<!-- google_ad_section_end --></strong> </div> <hr size="1" style="color:#E1E1E1; background-color:#E1E1E1" /> <!-- / icon and title --> <!-- message --> <table cellpadding="10"width="100%" border="0"> <tr> <td valign="top"><div id="post_message_10702"><!-- google_ad_section_start --><img src="http://www.flepstudio.org/forum/images/smilies/biggrin.gif" border="0" alt="" title="Big Grin" class="inlineimg" /><br /> <br /> once you got the XML data, just create the AS logics <img src="http://www.flepstudio.org/forum/images/smilies/biggrin.gif" border="0" alt="" title="Big Grin" class="inlineimg" /><br /> <br /> Did you start ?<br /> Do you have some ready code ?<!-- google_ad_section_end --></div></td> </tr> </table> <!-- / message --> <!-- sig --> <div> __________________<br /> <!-- google_ad_section_start(weight=ignore) --><p> </p><br /> <b><a rel="nofollow" href="http://www.amazon.com/gp/redirect.html?ie=UTF8&location=http%3A%2F%2Fwww.amazon.com%2FEssential-ActionScript-3-0%2Fdp%2F0596526946%3Fie%3DUTF8%26s%3Dbooks%26qid% 3D1206481471%26sr%3D8-1&tag=fleps-20&linkCode=ur2&camp=1789&creative=9325">I recommend: Essential Actionscript 3.0</a><img src="http://www.assoc-amazon.com/e/ir?t=fleps-20&l=ur2&o=1" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></b><br /> <br /> - I do not reply technicians pvt messages. Open a thread !<br /> - Non rispondo ai messaggi privati con domande tecniche. Apri una discussione sul forum !<!-- google_ad_section_end --> </div> <!-- / sig --> <div style="margin-top: 10px" align="right"> <!-- controls --> <div style="float:left"><a rel="nofollow" href="http://digg.com/submit?phase=2&url=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2310702&title=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/digg.gif" alt="Digg this Post!" border="0" /></a><a rel="nofollow" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2310702&title=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/delicious.gif" alt="Add Post to del.icio.us" border="0" /></a><a rel="nofollow" href="http://technorati.com/faves/?add=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2310702" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/technorati.gif" alt="Bookmark Post in Technorati" border="0" /></a><a rel="nofollow" href="http://furl.net/storeIt.jsp?u=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2310702&t=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/furl.gif" alt="Furl this Post!" border="0" /></a></div> <a href="http://www.flepstudio.org/forum/newreply.php?do=newreply&p=10702" rel="nofollow"><img src="http://www.flepstudio.org/forum/images/buttons/quote.gif" alt="Reply With Quote" border="0" /></a> <!-- / controls --> </div> <!-- message, attachments, sig --> </td> </tr> </table> <!-- post 10702 popup menu --> <!-- / post 10702 popup menu --> </div> </div> </div> </div> <!-- / close content container --> <!-- / post #10702 --><!-- post #13934 --> <!-- open content container --> <div align="center"> <div class="page" style="width:95%; text-align:left"> <div style="padding:0px 25px 0px 25px" align="left"> <div id="edit13934" style="padding:0px 0px 6px 0px"> <!-- this is not the last post shown on the page --> <table class="tborder" id="post13934" cellpadding="6" cellspacing="0" border="0" width="100%" align="center"> <tr> <td class="thead" > <div class="normal" style="float:right">   #<a href="http://www.flepstudio.org/forum/13934-post4.html" target="new" id="postcount13934" name="4"><strong>4</strong></a> (<b><a href="/forum/tutorials/451-how-read-view-rss-flash-cs3.html#post13934" title="Link to this Post">permalink</a></b>)   </div> <div class="normal"> <!-- status icon and date --> <a name="post13934"><img class="inlineimg" src="http://www.flepstudio.org/forum/images/statusicon/post_old.gif" alt="Old" border="0" /></a> 31-07-08, 01:01 <!-- / status icon and date --> </div> </td> </tr> <tr> <td class="alt2" style="padding:0px"> <!-- user info --> <table cellpadding="0" cellspacing="6" border="0" width="100%"> <tr> <td nowrap="nowrap"> <div id="postmenu_13934"> <a rel="nofollow" class="bigusername" href="http://www.flepstudio.org/forum/members/wookieebag.html"><!-- google_ad_section_start(weight=ignore) -->wookieebag<!-- google_ad_section_end --></a> <img class="inlineimg" src="http://www.flepstudio.org/forum/images/statusicon/user_offline.gif" alt="wookieebag is offline" border="0" /> </div> <div class="smallfont">Junior Member</div> </td> <td width="100%"> </td> <td valign="top" nowrap="nowrap"> <div class="smallfont"> <div>Join Date: Apr 2008</div> <div> Posts: 2 </div> Rep Power: <span id="reppower_13934_15685">0</span> <div><span id="repdisplay_13934_15685"><img class="inlineimg" src="http://www.flepstudio.org/forum/images/reputation/reputation_pos.gif" alt="wookieebag is on a distinguished road" border="0" /></span></div> <div> </div> </div> </td> </tr> </table> <!-- / user info --> </td> </tr> <tr> <td class="alt1" id="td_post_13934"> <!-- message, attachments, sig --> <!-- icon and title --> <div class="smallfont"> <strong><!-- google_ad_section_start -->Re: How to read and view a RSS with Flash CS3<!-- google_ad_section_end --></strong> </div> <hr size="1" style="color:#E1E1E1; background-color:#E1E1E1" /> <!-- / icon and title --> <!-- message --> <table cellpadding="10"width="100%" border="0"> <tr> <td valign="top"><div id="post_message_13934"><!-- google_ad_section_start -->The source code you posted doesn't seem to work. errors on every compile. i couldn't access the rss directly so i tries a few others, some with the same results, some with different errors.<!-- google_ad_section_end --></div></td> </tr> </table> <!-- / message --> <div style="margin-top: 10px" align="right"> <!-- controls --> <div style="float:left"><a rel="nofollow" href="http://digg.com/submit?phase=2&url=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2313934&title=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/digg.gif" alt="Digg this Post!" border="0" /></a><a rel="nofollow" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2313934&title=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/delicious.gif" alt="Add Post to del.icio.us" border="0" /></a><a rel="nofollow" href="http://technorati.com/faves/?add=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2313934" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/technorati.gif" alt="Bookmark Post in Technorati" border="0" /></a><a rel="nofollow" href="http://furl.net/storeIt.jsp?u=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2313934&t=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/furl.gif" alt="Furl this Post!" border="0" /></a></div> <a href="http://www.flepstudio.org/forum/newreply.php?do=newreply&p=13934" rel="nofollow"><img src="http://www.flepstudio.org/forum/images/buttons/quote.gif" alt="Reply With Quote" border="0" /></a> <!-- / controls --> </div> <!-- message, attachments, sig --> </td> </tr> </table> <!-- post 13934 popup menu --> <!-- / post 13934 popup menu --> </div> </div> </div> </div> <!-- / close content container --> <!-- / post #13934 --><!-- post #13947 --> <!-- open content container --> <div align="center"> <div class="page" style="width:95%; text-align:left"> <div style="padding:0px 25px 0px 25px" align="left"> <div id="edit13947" style="padding:0px 0px 6px 0px"> <!-- this is not the last post shown on the page --> <table class="tborder" id="post13947" cellpadding="6" cellspacing="0" border="0" width="100%" align="center"> <tr> <td class="thead" > <div class="normal" style="float:right">   #<a href="http://www.flepstudio.org/forum/13947-post5.html" target="new" id="postcount13947" name="5"><strong>5</strong></a> (<b><a href="/forum/tutorials/451-how-read-view-rss-flash-cs3.html#post13947" title="Link to this Post">permalink</a></b>)   </div> <div class="normal"> <!-- status icon and date --> <a name="post13947"><img class="inlineimg" src="http://www.flepstudio.org/forum/images/statusicon/post_old.gif" alt="Old" border="0" /></a> 31-07-08, 07:24 <!-- / status icon and date --> </div> </td> </tr> <tr> <td class="alt2" style="padding:0px"> <!-- user info --> <table cellpadding="0" cellspacing="6" border="0" width="100%"> <tr> <td class="alt2"><a rel="nofollow" href="http://www.flepstudio.org/forum/members/onsitus.html"><img src="http://www.flepstudio.org/forum/avatars/onsitus.gif?dateline=1210507499" width="80" height="80" alt="Onsitus's Avatar" border="0" /></a></td> <td nowrap="nowrap"> <div id="postmenu_13947"> <a rel="nofollow" class="bigusername" href="http://www.flepstudio.org/forum/members/onsitus.html"><!-- google_ad_section_start(weight=ignore) -->Onsitus<!-- google_ad_section_end --></a> <img class="inlineimg" src="http://www.flepstudio.org/forum/images/statusicon/user_offline.gif" alt="Onsitus is offline" border="0" /> </div> <div class="smallfont">CSS.FlepStudio.org</div> </td> <td width="100%"> </td> <td valign="top" nowrap="nowrap"> <div class="smallfont"> <div>Join Date: Jul 2007</div> <div>Location: Nettuno Beach</div> <div> Posts: 1,060 </div> Rep Power: <span id="reppower_13947_482">3</span> <div><span id="repdisplay_13947_482"><img class="inlineimg" src="http://www.flepstudio.org/forum/images/reputation/reputation_pos.gif" alt="Onsitus is on a distinguished road" border="0" /></span></div> <div> </div> </div> </td> </tr> </table> <!-- / user info --> </td> </tr> <tr> <td class="alt1" id="td_post_13947"> <!-- message, attachments, sig --> <!-- icon and title --> <div class="smallfont"> <strong><!-- google_ad_section_start -->Re: How to read and view a RSS with Flash CS3<!-- google_ad_section_end --></strong> </div> <hr size="1" style="color:#E1E1E1; background-color:#E1E1E1" /> <!-- / icon and title --> <!-- message --> <table cellpadding="10"width="100%" border="0"> <tr> <td valign="top"><div id="post_message_13947"><!-- google_ad_section_start --><div style="margin:20px; margin-top:5px; "> <div class="smallfont" style="margin-bottom:2px">Quote:</div> <table cellpadding="6" cellspacing="0" border="0" width="100%"> <tr> <td class="alt2" style="border:1px inset"> <div> Originally Posted by <strong>wookieebag</strong> <a href="http://www.flepstudio.org/forum/tutorials/451-how-read-view-rss-flash-cs3.html#post13934" rel="nofollow"><img class="inlineimg" src="http://www.flepstudio.org/forum/images/buttons/viewpost.gif" border="0" alt="View Post" /></a> </div> <div style="font-style:italic">The source code you posted doesn't seem to work. errors on every compile. i couldn't access the rss directly so i tries a few others, some with the same results, some with different errors.</div> </td> </tr> </table> </div>Ciao,<br /> <br /> what kind of error do you get though?<!-- google_ad_section_end --></div></td> </tr> </table> <!-- / message --> <!-- sig --> <div> __________________<br /> <!-- google_ad_section_start(weight=ignore) --><a rel="nofollow" href="http://css.flepstudio.org" target="_blank"><img src="http://css.flepstudio.org/images/css_flep_studio.jpg" border="0" alt="" /></a><br /> <font color="Silver"><b><a rel="nofollow" href="http://www.onsitus.it/da-psd-a-xhtml/" target="_blank">Conversione da PSD a XHTML/CSS</a> - <a rel="nofollow" href="http://www.onsitus.it" target="_blank">Creazione siti web</a> - <a rel="nofollow" href="http://www.onsitus.it/css3/" target="_blank">Introduzione CSS3</a></b></font><!-- google_ad_section_end --> </div> <!-- / sig --> <div style="margin-top: 10px" align="right"> <!-- controls --> <div style="float:left"><a rel="nofollow" href="http://digg.com/submit?phase=2&url=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2313947&title=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/digg.gif" alt="Digg this Post!" border="0" /></a><a rel="nofollow" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2313947&title=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/delicious.gif" alt="Add Post to del.icio.us" border="0" /></a><a rel="nofollow" href="http://technorati.com/faves/?add=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2313947" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/technorati.gif" alt="Bookmark Post in Technorati" border="0" /></a><a rel="nofollow" href="http://furl.net/storeIt.jsp?u=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2313947&t=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/furl.gif" alt="Furl this Post!" border="0" /></a></div> <a href="http://www.flepstudio.org/forum/newreply.php?do=newreply&p=13947" rel="nofollow"><img src="http://www.flepstudio.org/forum/images/buttons/quote.gif" alt="Reply With Quote" border="0" /></a> <!-- / controls --> </div> <!-- message, attachments, sig --> </td> </tr> </table> <!-- post 13947 popup menu --> <!-- / post 13947 popup menu --> </div> </div> </div> </div> <!-- / close content container --> <!-- / post #13947 --><!-- post #14001 --> <!-- open content container --> <div align="center"> <div class="page" style="width:95%; text-align:left"> <div style="padding:0px 25px 0px 25px" align="left"> <div id="edit14001" style="padding:0px 0px 6px 0px"> <!-- this is not the last post shown on the page --> <table class="tborder" id="post14001" cellpadding="6" cellspacing="0" border="0" width="100%" align="center"> <tr> <td class="thead" > <div class="normal" style="float:right">   #<a href="http://www.flepstudio.org/forum/14001-post6.html" target="new" id="postcount14001" name="6"><strong>6</strong></a> (<b><a href="/forum/tutorials/451-how-read-view-rss-flash-cs3.html#post14001" title="Link to this Post">permalink</a></b>)   </div> <div class="normal"> <!-- status icon and date --> <a name="post14001"><img class="inlineimg" src="http://www.flepstudio.org/forum/images/statusicon/post_old.gif" alt="Old" border="0" /></a> 31-07-08, 14:14 <!-- / status icon and date --> </div> </td> </tr> <tr> <td class="alt2" style="padding:0px"> <!-- user info --> <table cellpadding="0" cellspacing="6" border="0" width="100%"> <tr> <td nowrap="nowrap"> <div id="postmenu_14001"> <a rel="nofollow" class="bigusername" href="http://www.flepstudio.org/forum/members/wookieebag.html"><!-- google_ad_section_start(weight=ignore) -->wookieebag<!-- google_ad_section_end --></a> <img class="inlineimg" src="http://www.flepstudio.org/forum/images/statusicon/user_offline.gif" alt="wookieebag is offline" border="0" /> </div> <div class="smallfont">Junior Member</div> </td> <td width="100%"> </td> <td valign="top" nowrap="nowrap"> <div class="smallfont"> <div>Join Date: Apr 2008</div> <div> Posts: 2 </div> Rep Power: <span id="reppower_14001_15685">0</span> <div><span id="repdisplay_14001_15685"><img class="inlineimg" src="http://www.flepstudio.org/forum/images/reputation/reputation_pos.gif" alt="wookieebag is on a distinguished road" border="0" /></span></div> <div> </div> </div> </td> </tr> </table> <!-- / user info --> </td> </tr> <tr> <td class="alt1" id="td_post_14001"> <!-- message, attachments, sig --> <!-- icon and title --> <div class="smallfont"> <strong><!-- google_ad_section_start -->Re: How to read and view a RSS with Flash CS3<!-- google_ad_section_end --></strong> </div> <hr size="1" style="color:#E1E1E1; background-color:#E1E1E1" /> <!-- / icon and title --> <!-- message --> <table cellpadding="10"width="100%" border="0"> <tr> <td valign="top"><div id="post_message_14001"><!-- google_ad_section_start -->When it points to the rss for this site, I get the errors:<br /> <br /> TypeError: Error #1085: The element type "img" must be terminated by the matching end-tag "</img>".<br /> at LoadingXML/::completeHandler()<br /> at flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunctio n()<br /> at flash.events::EventDispatcher/dispatchEvent()<br /> at flash.net::URLLoader/flash.net:URLLoader::onComplete()<br /> <br /> Another feed I tried was the espn feed for horse racing. When using that feed i got these errors:<br /> <br /> TypeError: Error #1009: Cannot access a property or method of a null object reference.<br /> at LoadingXML/::completeHandler()<br /> at flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunctio n()<br /> at flash.events::EventDispatcher/dispatchEvent()<br /> at flash.net::URLLoader/flash.net:URLLoader::onComplete()<br /> <br /> I get the same error on a google news feed.<!-- google_ad_section_end --></div></td> </tr> </table> <!-- / message --> <div style="margin-top: 10px" align="right"> <!-- controls --> <div style="float:left"><a rel="nofollow" href="http://digg.com/submit?phase=2&url=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2314001&title=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/digg.gif" alt="Digg this Post!" border="0" /></a><a rel="nofollow" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2314001&title=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/delicious.gif" alt="Add Post to del.icio.us" border="0" /></a><a rel="nofollow" href="http://technorati.com/faves/?add=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2314001" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/technorati.gif" alt="Bookmark Post in Technorati" border="0" /></a><a rel="nofollow" href="http://furl.net/storeIt.jsp?u=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2314001&t=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/furl.gif" alt="Furl this Post!" border="0" /></a></div> <a href="http://www.flepstudio.org/forum/newreply.php?do=newreply&p=14001" rel="nofollow"><img src="http://www.flepstudio.org/forum/images/buttons/quote.gif" alt="Reply With Quote" border="0" /></a> <!-- / controls --> </div> <!-- message, attachments, sig --> </td> </tr> </table> <!-- post 14001 popup menu --> <!-- / post 14001 popup menu --> </div> </div> </div> </div> <!-- / close content container --> <!-- / post #14001 --><!-- post #14143 --> <!-- open content container --> <div align="center"> <div class="page" style="width:95%; text-align:left"> <div style="padding:0px 25px 0px 25px" align="left"> <div id="edit14143" style="padding:0px 0px 6px 0px"> <!-- this is not the last post shown on the page --> <table class="tborder" id="post14143" cellpadding="6" cellspacing="0" border="0" width="100%" align="center"> <tr> <td class="thead" > <div class="normal" style="float:right">   #<a href="http://www.flepstudio.org/forum/14143-post7.html" target="new" id="postcount14143" name="7"><strong>7</strong></a> (<b><a href="/forum/tutorials/451-how-read-view-rss-flash-cs3.html#post14143" title="Link to this Post">permalink</a></b>)   </div> <div class="normal"> <!-- status icon and date --> <a name="post14143"><img class="inlineimg" src="http://www.flepstudio.org/forum/images/statusicon/post_old.gif" alt="Old" border="0" /></a> 05-08-08, 21:49 <!-- / status icon and date --> </div> </td> </tr> <tr> <td class="alt2" style="padding:0px"> <!-- user info --> <table cellpadding="0" cellspacing="6" border="0" width="100%"> <tr> <td nowrap="nowrap"> <div id="postmenu_14143"> <a rel="nofollow" class="bigusername" href="http://www.flepstudio.org/forum/members/juliezhu.html"><!-- google_ad_section_start(weight=ignore) -->juliezhu<!-- google_ad_section_end --></a> <img class="inlineimg" src="http://www.flepstudio.org/forum/images/statusicon/user_offline.gif" alt="juliezhu is offline" border="0" /> </div> <div class="smallfont">Junior Member</div> </td> <td width="100%"> </td> <td valign="top" nowrap="nowrap"> <div class="smallfont"> <div>Join Date: Aug 2008</div> <div> Posts: 2 </div> Rep Power: <span id="reppower_14143_23103">0</span> <div><span id="repdisplay_14143_23103"><img class="inlineimg" src="http://www.flepstudio.org/forum/images/reputation/reputation_pos.gif" alt="juliezhu is on a distinguished road" border="0" /></span></div> <div> </div> </div> </td> </tr> </table> <!-- / user info --> </td> </tr> <tr> <td class="alt1" id="td_post_14143"> <!-- message, attachments, sig --> <!-- icon and title --> <div class="smallfont"> <strong><!-- google_ad_section_start -->Re: How to read and view a RSS with Flash CS3<!-- google_ad_section_end --></strong> </div> <hr size="1" style="color:#E1E1E1; background-color:#E1E1E1" /> <!-- / icon and title --> <!-- message --> <table cellpadding="10"width="100%" border="0"> <tr> <td valign="top"><div id="post_message_14143"><!-- google_ad_section_start -->Thanks flep your brilliant works and tutorials!!!!!<br /> <br /> I've been trying RSS...cross domain for a while, I couldn't get it work live, only work at local server, so I wanted to try this one you posted, but I got error:<br /> <br /> TypeError: Error #1085: The element type "img" must be terminated by the matching end-tag "</img>".<br /> at LoadingXML/completeHandler()<br /> at flash.events::EventDispatcher/dispatchEventFunction()<br /> at flash.events::EventDispatcher/dispatchEvent()<br /> at flash.net::URLLoader/onComplete()<br /> <br /> Any help would be greatly appreciated! Or please let me know anyway to solve the flash cross-domain problem.<!-- google_ad_section_end --></div></td> </tr> </table> <!-- / message --> <div style="margin-top: 10px" align="right"> <!-- controls --> <div style="float:left"><a rel="nofollow" href="http://digg.com/submit?phase=2&url=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2314143&title=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/digg.gif" alt="Digg this Post!" border="0" /></a><a rel="nofollow" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2314143&title=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/delicious.gif" alt="Add Post to del.icio.us" border="0" /></a><a rel="nofollow" href="http://technorati.com/faves/?add=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2314143" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/technorati.gif" alt="Bookmark Post in Technorati" border="0" /></a><a rel="nofollow" href="http://furl.net/storeIt.jsp?u=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2314143&t=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/furl.gif" alt="Furl this Post!" border="0" /></a></div> <a href="http://www.flepstudio.org/forum/newreply.php?do=newreply&p=14143" rel="nofollow"><img src="http://www.flepstudio.org/forum/images/buttons/quote.gif" alt="Reply With Quote" border="0" /></a> <!-- / controls --> </div> <!-- message, attachments, sig --> </td> </tr> </table> <!-- post 14143 popup menu --> <!-- / post 14143 popup menu --> </div> </div> </div> </div> <!-- / close content container --> <!-- / post #14143 --><!-- post #17350 --> <!-- open content container --> <div align="center"> <div class="page" style="width:95%; text-align:left"> <div style="padding:0px 25px 0px 25px" align="left"> <div id="edit17350" style="padding:0px 0px 6px 0px"> <!-- this is not the last post shown on the page --> <table class="tborder" id="post17350" cellpadding="6" cellspacing="0" border="0" width="100%" align="center"> <tr> <td class="thead" > <div class="normal" style="float:right">   #<a href="http://www.flepstudio.org/forum/17350-post8.html" target="new" id="postcount17350" name="8"><strong>8</strong></a> (<b><a href="/forum/tutorials/451-how-read-view-rss-flash-cs3.html#post17350" title="Link to this Post">permalink</a></b>)   </div> <div class="normal"> <!-- status icon and date --> <a name="post17350"><img class="inlineimg" src="http://www.flepstudio.org/forum/images/statusicon/post_old.gif" alt="Old" border="0" /></a> 18-11-08, 14:00 <!-- / status icon and date --> </div> </td> </tr> <tr> <td class="alt2" style="padding:0px"> <!-- user info --> <table cellpadding="0" cellspacing="6" border="0" width="100%"> <tr> <td nowrap="nowrap"> <div id="postmenu_17350"> <a rel="nofollow" class="bigusername" href="http://www.flepstudio.org/forum/members/lowtech.html"><!-- google_ad_section_start(weight=ignore) -->lowtech<!-- google_ad_section_end --></a> <img class="inlineimg" src="http://www.flepstudio.org/forum/images/statusicon/user_offline.gif" alt="lowtech is offline" border="0" /> </div> <div class="smallfont">Junior Member</div> </td> <td width="100%"> </td> <td valign="top" nowrap="nowrap"> <div class="smallfont"> <div>Join Date: Oct 2008</div> <div> Posts: 4 </div> Rep Power: <span id="reppower_17350_28314">0</span> <div><span id="repdisplay_17350_28314"><img class="inlineimg" src="http://www.flepstudio.org/forum/images/reputation/reputation_pos.gif" alt="lowtech is on a distinguished road" border="0" /></span></div> <div> </div> </div> </td> </tr> </table> <!-- / user info --> </td> </tr> <tr> <td class="alt1" id="td_post_17350"> <!-- message, attachments, sig --> <!-- icon and title --> <div class="smallfont"> <strong><!-- google_ad_section_start -->Re: How to read and view a RSS with Flash CS3<!-- google_ad_section_end --></strong> </div> <hr size="1" style="color:#E1E1E1; background-color:#E1E1E1" /> <!-- / icon and title --> <!-- message --> <table cellpadding="10"width="100%" border="0"> <tr> <td valign="top"><div id="post_message_17350"><!-- google_ad_section_start --><div style="margin:20px; margin-top:5px; "> <div class="smallfont" style="margin-bottom:2px">Quote:</div> <table cellpadding="6" cellspacing="0" border="0" width="100%"> <tr> <td class="alt2" style="border:1px inset"> <div> Originally Posted by <strong>juliezhu</strong> <a href="http://www.flepstudio.org/forum/tutorials/451-how-read-view-rss-flash-cs3.html#post14143" rel="nofollow"><img class="inlineimg" src="http://www.flepstudio.org/forum/images/buttons/viewpost.gif" border="0" alt="View Post" /></a> </div> <div style="font-style:italic"><br /> TypeError: Error #1085: The element type "img" must be terminated by the matching end-tag "".<br /> at LoadingXML/completeHandler()<br /> at flash.events::EventDispatcher/dispatchEventFunction()<br /> at flash.events::EventDispatcher/dispatchEvent()<br /> at flash.net::URLLoader/onComplete()</div> </td> </tr> </table> </div>I got the same error as above. Any suggestion? <img src="http://www.flepstudio.org/forum/images/smilies/confused.gif" border="0" alt="" title="Confused" class="inlineimg" /><!-- google_ad_section_end --></div></td> </tr> </table> <!-- / message --> <div style="margin-top: 10px" align="right"> <!-- controls --> <div style="float:left"><a rel="nofollow" href="http://digg.com/submit?phase=2&url=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2317350&title=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/digg.gif" alt="Digg this Post!" border="0" /></a><a rel="nofollow" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2317350&title=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/delicious.gif" alt="Add Post to del.icio.us" border="0" /></a><a rel="nofollow" href="http://technorati.com/faves/?add=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2317350" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/technorati.gif" alt="Bookmark Post in Technorati" border="0" /></a><a rel="nofollow" href="http://furl.net/storeIt.jsp?u=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2317350&t=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/furl.gif" alt="Furl this Post!" border="0" /></a></div> <a href="http://www.flepstudio.org/forum/newreply.php?do=newreply&p=17350" rel="nofollow"><img src="http://www.flepstudio.org/forum/images/buttons/quote.gif" alt="Reply With Quote" border="0" /></a> <!-- / controls --> </div> <!-- message, attachments, sig --> </td> </tr> </table> <!-- post 17350 popup menu --> <!-- / post 17350 popup menu --> </div> </div> </div> </div> <!-- / close content container --> <!-- / post #17350 --><!-- post #17383 --> <!-- open content container --> <div align="center"> <div class="page" style="width:95%; text-align:left"> <div style="padding:0px 25px 0px 25px" align="left"> <div id="edit17383" style="padding:0px 0px 6px 0px"> <!-- this is not the last post shown on the page --> <table class="tborder" id="post17383" cellpadding="6" cellspacing="0" border="0" width="100%" align="center"> <tr> <td class="thead" > <div class="normal" style="float:right">   #<a href="http://www.flepstudio.org/forum/17383-post9.html" target="new" id="postcount17383" name="9"><strong>9</strong></a> (<b><a href="/forum/tutorials/451-how-read-view-rss-flash-cs3.html#post17383" title="Link to this Post">permalink</a></b>)   </div> <div class="normal"> <!-- status icon and date --> <a name="post17383"><img class="inlineimg" src="http://www.flepstudio.org/forum/images/statusicon/post_old.gif" alt="Old" border="0" /></a> 19-11-08, 15:45 <!-- / status icon and date --> </div> </td> </tr> <tr> <td class="alt2" style="padding:0px"> <!-- user info --> <table cellpadding="0" cellspacing="6" border="0" width="100%"> <tr> <td nowrap="nowrap"> <div id="postmenu_17383"> <a rel="nofollow" class="bigusername" href="http://www.flepstudio.org/forum/members/lowtech.html"><!-- google_ad_section_start(weight=ignore) -->lowtech<!-- google_ad_section_end --></a> <img class="inlineimg" src="http://www.flepstudio.org/forum/images/statusicon/user_offline.gif" alt="lowtech is offline" border="0" /> </div> <div class="smallfont">Junior Member</div> </td> <td width="100%"> </td> <td valign="top" nowrap="nowrap"> <div class="smallfont"> <div>Join Date: Oct 2008</div> <div> Posts: 4 </div> Rep Power: <span id="reppower_17383_28314">0</span> <div><span id="repdisplay_17383_28314"><img class="inlineimg" src="http://www.flepstudio.org/forum/images/reputation/reputation_pos.gif" alt="lowtech is on a distinguished road" border="0" /></span></div> <div> </div> </div> </td> </tr> </table> <!-- / user info --> </td> </tr> <tr> <td class="alt1" id="td_post_17383"> <!-- message, attachments, sig --> <!-- icon and title --> <div class="smallfont"> <strong><!-- google_ad_section_start -->Re: How to read and view a RSS with Flash CS3<!-- google_ad_section_end --></strong> </div> <hr size="1" style="color:#E1E1E1; background-color:#E1E1E1" /> <!-- / icon and title --> <!-- message --> <table cellpadding="10"width="100%" border="0"> <tr> <td valign="top"><div id="post_message_17383"><!-- google_ad_section_start -->Ok, i managed it to work. I made some changes in xml navigation to fit a different xml file and it worked ;-)<!-- google_ad_section_end --></div></td> </tr> </table> <!-- / message --> <div style="margin-top: 10px" align="right"> <!-- controls --> <div style="float:left"><a rel="nofollow" href="http://digg.com/submit?phase=2&url=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2317383&title=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/digg.gif" alt="Digg this Post!" border="0" /></a><a rel="nofollow" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2317383&title=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/delicious.gif" alt="Add Post to del.icio.us" border="0" /></a><a rel="nofollow" href="http://technorati.com/faves/?add=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2317383" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/technorati.gif" alt="Bookmark Post in Technorati" border="0" /></a><a rel="nofollow" href="http://furl.net/storeIt.jsp?u=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2317383&t=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/furl.gif" alt="Furl this Post!" border="0" /></a></div> <a href="http://www.flepstudio.org/forum/newreply.php?do=newreply&p=17383" rel="nofollow"><img src="http://www.flepstudio.org/forum/images/buttons/quote.gif" alt="Reply With Quote" border="0" /></a> <!-- / controls --> </div> <!-- message, attachments, sig --> </td> </tr> </table> <!-- post 17383 popup menu --> <!-- / post 17383 popup menu --> </div> </div> </div> </div> <!-- / close content container --> <!-- / post #17383 --><!-- post #17391 --> <!-- open content container --> <div align="center"> <div class="page" style="width:95%; text-align:left"> <div style="padding:0px 25px 0px 25px" align="left"> <div id="edit17391" style="padding:0px 0px 6px 0px"> <table class="tborder" id="post17391" cellpadding="6" cellspacing="0" border="0" width="100%" align="center"> <tr> <td class="thead" > <div class="normal" style="float:right">   #<a href="http://www.flepstudio.org/forum/17391-post10.html" target="new" id="postcount17391" name="10"><strong>10</strong></a> (<b><a href="/forum/tutorials/451-how-read-view-rss-flash-cs3.html#post17391" title="Link to this Post">permalink</a></b>)   </div> <div class="normal"> <!-- status icon and date --> <a name="post17391"><img class="inlineimg" src="http://www.flepstudio.org/forum/images/statusicon/post_old.gif" alt="Old" border="0" /></a> 19-11-08, 17:32 <!-- / status icon and date --> </div> </td> </tr> <tr> <td class="alt2" style="padding:0px"> <!-- user info --> <table cellpadding="0" cellspacing="6" border="0" width="100%"> <tr> <td nowrap="nowrap"> <div id="postmenu_17391"> <a rel="nofollow" class="bigusername" href="http://www.flepstudio.org/forum/members/flep.html"><!-- google_ad_section_start(weight=ignore) -->Flep<!-- google_ad_section_end --></a> <img class="inlineimg" src="http://www.flepstudio.org/forum/images/statusicon/user_offline.gif" alt="Flep is offline" border="0" /> </div> <div class="smallfont">Administrator</div> </td> <td width="100%"> </td> <td valign="top" nowrap="nowrap"> <div class="smallfont"> <div>Join Date: Jul 2007</div> <div>Location: Cesena</div> <div> Posts: 4,535 </div> Rep Power: <span id="reppower_17391_1">6</span> <div><span id="repdisplay_17391_1"><img class="inlineimg" src="http://www.flepstudio.org/forum/images/reputation/reputation_pos.gif" alt="Flep is on a distinguished road" border="0" /></span></div> <div> </div> </div> </td> </tr> </table> <!-- / user info --> </td> </tr> <tr> <td class="alt1" id="td_post_17391"> <!-- message, attachments, sig --> <!-- icon and title --> <div class="smallfont"> <strong><!-- google_ad_section_start -->Re: How to read and view a RSS with Flash CS3<!-- google_ad_section_end --></strong> </div> <hr size="1" style="color:#E1E1E1; background-color:#E1E1E1" /> <!-- / icon and title --> <!-- message --> <table cellpadding="10"width="100%" border="0"> <tr> <td valign="top"><div id="post_message_17391"><!-- google_ad_section_start -->Hi guys,<br /> this sample is not working fine actually, that's cause I migrated my blog to another platform.<br /> As soon as I have time I fix it !<br /> Anyway you can get good tips by watching how to manage XML.<!-- google_ad_section_end --></div></td> </tr> </table> <!-- / message --> <!-- sig --> <div> __________________<br /> <!-- google_ad_section_start(weight=ignore) --><p> </p><br /> <b><a rel="nofollow" href="http://www.amazon.com/gp/redirect.html?ie=UTF8&location=http%3A%2F%2Fwww.amazon.com%2FEssential-ActionScript-3-0%2Fdp%2F0596526946%3Fie%3DUTF8%26s%3Dbooks%26qid% 3D1206481471%26sr%3D8-1&tag=fleps-20&linkCode=ur2&camp=1789&creative=9325">I recommend: Essential Actionscript 3.0</a><img src="http://www.assoc-amazon.com/e/ir?t=fleps-20&l=ur2&o=1" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></b><br /> <br /> - I do not reply technicians pvt messages. Open a thread !<br /> - Non rispondo ai messaggi privati con domande tecniche. Apri una discussione sul forum !<!-- google_ad_section_end --> </div> <!-- / sig --> <div style="margin-top: 10px" align="right"> <!-- controls --> <div style="float:left"><a rel="nofollow" href="http://digg.com/submit?phase=2&url=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2317391&title=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/digg.gif" alt="Digg this Post!" border="0" /></a><a rel="nofollow" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2317391&title=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/delicious.gif" alt="Add Post to del.icio.us" border="0" /></a><a rel="nofollow" href="http://technorati.com/faves/?add=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2317391" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/technorati.gif" alt="Bookmark Post in Technorati" border="0" /></a><a rel="nofollow" href="http://furl.net/storeIt.jsp?u=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html%2317391&t=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank"><img src="http://www.flepstudio.org/forum/images/vbseo/furl.gif" alt="Furl this Post!" border="0" /></a></div> <a href="http://www.flepstudio.org/forum/newreply.php?do=newreply&p=17391" rel="nofollow"><img src="http://www.flepstudio.org/forum/images/buttons/quote.gif" alt="Reply With Quote" border="0" /></a> <!-- / controls --> </div> <!-- message, attachments, sig --> </td> </tr> </table> <p><div align="center" class="rounded" style=" color:#FFF; background-color:#333; "> <script type="text/javascript"> <!-- Begin rnd.today=new Date(); rnd.seed=rnd.today.getTime(); function rnd() { rnd.seed = (rnd.seed*9301+49297) % 233280; return rnd.seed/(233280.0); }; function rand(number) { var result = Math.ceil(rnd()*number); if (!result)result++; return result }; var ad_cnt1 = 14; var ad1 = rand(ad_cnt1); var link1; var adBanner1; var width1 var height1 if (ad1==1) { link1="http://store.flepstudio.org/"; adBanner1="http://www.flepstudio.org/images/banners/banner_728x90_2.jpg"; width1="728"; height1="90"; alt1="Professional Flash Files"; } if (ad1==2) { link1="http://store.flepstudio.org/"; adBanner1="http://www.flepstudio.org/images/banners/banner_728x90_grey.jpg"; width1="728"; height1="90"; alt1="Professional Flash Files"; } if (ad1==3) { link1="http://www.kqzyfj.com/click-3268277-10589138"; adBanner1="http://www.ftjcfx.com/image-3268277-10589138"; width1="728"; height1="90"; alt1="Photoshop CS4"; } if (ad1==4) { link1="http://www.kqzyfj.com/click-3268277-10589136"; adBanner1="http://www.ftjcfx.com/image-3268277-10589136"; width1="728"; height1="90"; alt1="Adobe CS4 Master Collection"; } if (ad1==5) { link1="http://store.flepstudio.org/video/multi-video-player-with-play-list-flash-cs3-actionscript-3/"; adBanner1="http://www.flepstudio.org/images/banners/banner_video_2.jpg"; width1="602"; height1="110"; alt1="Flash Video Player"; } if (ad1==6) { link1="http://www.kqzyfj.com/click-3268277-10589132"; adBanner1="http://www.awltovhc.com/image-3268277-10589132"; width1="728"; height1="90"; alt1="Flash CS4 Professional"; } if (ad1==7) { link1="http://flashden.net?ref=flepstudio"; adBanner1="http://flashden.net/new/images/ms_referral_banners/728x90_FD.jpg"; width1="728"; height1="90"; alt1="Flash Components"; } if (ad1==8) { link1="http://videohive.net?ref=flepstudio"; adBanner1="http://flashden.net/new/images/ms_referral_banners/VH_728x90.jpg"; width1="728"; height1="90"; alt1="Flash Videos"; } if (ad1==9) { link1="http://www.flasheff.com/?ref=0678feee276r30"; adBanner1="http://www.flepstudio.org/images/banners/flashEff.png"; width1="728"; height1="90"; alt1="Flash Components"; } if (ad1==10) { link1="http://www.jumpeyecomponents.com/?ref=0678feee276r30"; adBanner1="http://www.flepstudio.org/images/banners/menu_pack.png"; width1="728"; height1="90"; alt1="Flash Components"; } if (ad1==11) { link1="http://www.jumpeyecomponents.com/?ref=0678feee276r30"; adBanner1="http://www.jumpeyecomponents.com/images/ads/jc/728x90.gif"; width1="728"; height1="90"; alt1="Flash Components"; } if (ad1==12) { link1="http://www.txeff.com/?ref=0678feee276r30"; adBanner1="http://www.jumpeyecomponents.com/images/ads/te/728x90.gif"; width1="728"; height1="90"; alt1="Flash Components"; } if (ad1==13) { link1="http://www.flashloaded.com/?id2=9462038"; adBanner1="http://flashloaded.com/referralprogram/links/images/728x90.jpg"; width1="728"; height1="90"; alt1="Flash Components"; } if (ad1==14) { link1="http://www.bannersnack.com/?ref=152d8a69535r53"; adBanner1="http://flepstudio.org/images/banners/bannersnack_logo.jpg"; width1="728"; height1="90"; alt1="Banner Creator"; } document.write('<center><a href="' + link1 + '" target="_top">'); document.write('<img src="' + adBanner1 + '" width=' + width1 + ' height=' + height1 + ' border=0 alt="' + alt1 + '"></a>'); document.write('</center>'); // End --> </SCRIPT> </div></p> <!-- post 17391 popup menu --> <!-- / post 17391 popup menu --> </div> </div> </div> </div> <!-- / close content container --> <!-- / post #17391 --><div id="lastpost"></div></div> <!-- start content table --> <!-- open content container --> <div align="center"> <div class="page" style="width:95%; text-align:left"> <div style="padding:0px 25px 0px 25px" align="left"> <!-- / start content table --> <!-- controls below postbits --> <table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin-top:-3px"> <tr valign="top"> <td class="smallfont"><a href="http://www.flepstudio.org/forum/newreply.php?do=newreply&noquote=1&p=17391" rel="nofollow"><img src="http://www.flepstudio.org/forum/images/buttons/reply.gif" alt="Reply" border="0" /></a></td> <td align="right"><div class="pagenav" align="right"> <table class="tborder" cellpadding="3" cellspacing="0" border="0"> <tr> <td class="vbmenu_control" style="font-weight:normal">Page 1 of 2</td> <td class="alt2"><span class="smallfont" title="Showing results 1 to 10 of 12"><strong>1</strong></span></td> <td class="alt1"><a class="smallfont" href="http://www.flepstudio.org/forum/tutorials/451-how-read-view-rss-flash-cs3-2.html" title="Show results 11 to 12 of 12">2</a></td> <td class="alt1"><a class="smallfont" href="http://www.flepstudio.org/forum/tutorials/451-how-read-view-rss-flash-cs3-2.html" title="Next Page - Results 11 to 12 of 12">></a></td> </tr> </table> </div> </td> </tr> </table> <!-- / controls below postbits --> <!-- social bookmarking links --> <br /> <table cellpadding="6" cellspacing="0" border="0" width="100%" class="tborder" align="center"> <tr> <td class="thead">Bookmarks</td> </tr> <tr> <td class="alt2" style="padding-top:0px"><div style="clear:both"></div><ul style="list-style-type:none; margin:0px; padding:0px"><li class="smallfont" style="width:25%; min-width:160px; float:left; margin-top:6px"> <a rel="nofollow" href="http://digg.com/submit?phrase=2&url=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Fshowthread.php%3Ft%3D451&title=How+to+read+and+view+a+RSS+with+Flash+CS3" target="socialbookmark"><img src="http://www.flepstudio.org/forum/images/misc/bookmarksite_digg.gif" border="0" alt="Submit Thread to Digg" class="inlineimg" /></a> <a rel="nofollow" href="http://digg.com/submit?phrase=2&url=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Fshowthread.php%3Ft%3D451&title=How+to+read+and+view+a+RSS+with+Flash+CS3" target="socialbookmark" style="text-decoration:none">Digg</a> </li><li class="smallfont" style="width:25%; min-width:160px; float:left; margin-top:6px"> <a rel="nofollow" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Fshowthread.php%3Ft%3D451&title=How+to+read+and+view+a+RSS+with+Flash+CS3" target="socialbookmark"><img src="http://www.flepstudio.org/forum/images/misc/bookmarksite_delicious.gif" border="0" alt="Submit Thread to del.icio.us" class="inlineimg" /></a> <a rel="nofollow" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Fshowthread.php%3Ft%3D451&title=How+to+read+and+view+a+RSS+with+Flash+CS3" target="socialbookmark" style="text-decoration:none">del.icio.us</a> </li><li class="smallfont" style="width:25%; min-width:160px; float:left; margin-top:6px"> <a rel="nofollow" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Fshowthread.php%3Ft%3D451&title=How+to+read+and+view+a+RSS+with+Flash+CS3" target="socialbookmark"><img src="http://www.flepstudio.org/forum/images/misc/bookmarksite_stumbleupon.gif" border="0" alt="Submit Thread to StumbleUpon" class="inlineimg" /></a> <a rel="nofollow" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Fshowthread.php%3Ft%3D451&title=How+to+read+and+view+a+RSS+with+Flash+CS3" target="socialbookmark" style="text-decoration:none">StumbleUpon</a> </li><li class="smallfont" style="width:25%; min-width:160px; float:left; margin-top:6px"> <a rel="nofollow" href="http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Fshowthread.php%3Ft%3D451&title=How+to+read+and+view+a+RSS+with+Flash+CS3" target="socialbookmark"><img src="http://www.flepstudio.org/forum/images/misc/bookmarksite_google.gif" border="0" alt="Submit Thread to Google" class="inlineimg" /></a> <a rel="nofollow" href="http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Fshowthread.php%3Ft%3D451&title=How+to+read+and+view+a+RSS+with+Flash+CS3" target="socialbookmark" style="text-decoration:none">Google</a> </li></ul><div style="clear:both"></div></td> </tr> </table> <!-- / social bookmarking links --> <!-- next / previous links --> <br /> <div class="smallfont" align="center"> <strong>«</strong> <a href="http://www.flepstudio.org/forum/tutorials/2914-retrieve-data-mysql-flash-cs3.html" >Retrieve data from mySQL with Flash CS3</a> | <a href="http://www.flepstudio.org/forum/tutorials/3578-resizing-swf-real-time.html" >Resizing SWF at real time</a> <strong>»</strong> </div> <!-- / next / previous links --> <!-- controls for non-popup browsers --> <table class="tborder" cellpadding="6" cellspacing="0" border="0" width="100%" align="center" style="border-top-width:0px"> <tr> <td class="thead" colspan="2">Thread Tools<a name="goto_threadtools"></a></td> </tr> <tr valign="top"> <td class="alt1" colspan="2"> <!-- thread tools --> <div class="smallfont"> <div><img class="inlineimg" src="http://www.flepstudio.org/forum/images/buttons/printer.gif" alt="Show Printable Version" vspace="1" /> <a href="http://www.flepstudio.org/forum/tutorials/451-how-read-view-rss-flash-cs3-print.html" rel="nofollow">Show Printable Version</a></div> <div><img class="inlineimg" src="http://www.flepstudio.org/forum/images/buttons/sendtofriend.gif" alt="Email this Page" vspace="1" /> <a href="http://www.flepstudio.org/forum/sendmessage.php?do=sendtofriend&t=451" rel="nofollow">Email this Page</a></div> </div> <!-- / thread tools --> </td> </tr> <tr> <td class="thead" colspan="2">Display Modes<a name="goto_displaymodes"></a></td> </tr> <tr valign="top"> <td class="alt2" colspan="2"> <!-- thread display modes --> <div class="smallfont"> <div><img class="inlineimg" src="http://www.flepstudio.org/forum/images/buttons/mode_linear.gif" alt="Linear Mode" vspace="1" /> <strong>Linear Mode</strong></div> <div><img class="inlineimg" src="http://www.flepstudio.org/forum/images/buttons/mode_hybrid.gif" alt="Hybrid Mode" vspace="1" /> <a rel="nofollow" href="http://www.flepstudio.org/forum/tutorials/451-how-read-view-rss-flash-cs3.html?mode=hybrid">Switch to Hybrid Mode</a></div> <div><img class="inlineimg" src="http://www.flepstudio.org/forum/images/buttons/mode_threaded.gif" alt="Threaded Mode" vspace="1" /> <a rel="nofollow" href="http://www.flepstudio.org/forum/tutorials/451-how-read-view-rss-flash-cs3.html?mode=threaded#post2160">Switch to Threaded Mode</a></div> </div> <!-- / thread display modes --> </td> </tr> </table> <br /> <!-- / controls for non-popup browsers --> <!-- forum rules and admin links --> <table cellpadding="0" cellspacing="0" border="0" width="100%" align="center"> <tr valign="bottom"> <td width="100%" valign="top"> <table class="tborder" cellpadding="6" cellspacing="0" border="0" width="210"> <thead> <tr> <td class="thead"> <a style="float:right" href="/forum/tutorials/451-how-read-view-rss-flash-cs3.html#top" onclick="return toggle_collapse('forumrules')"><img id="collapseimg_forumrules" src="http://www.flepstudio.org/forum/images/buttons/collapse_thead.gif" alt="" border="0" /></a> Posting Rules </td> </tr> </thead> <tbody id="collapseobj_forumrules" style=""> <tr> <td class="alt1" nowrap="nowrap"><div class="smallfont"> <div>You <strong>may not</strong> post new threads</div> <div>You <strong>may not</strong> post replies</div> <div>You <strong>may not</strong> post attachments</div> <div>You <strong>may not</strong> edit your posts</div> <hr /> <div><a rel="nofollow" href="http://www.flepstudio.org/forum/misc.php?do=bbcode" target="_blank">BB code</a> is <strong>On</strong></div> <div><a rel="nofollow" href="http://www.flepstudio.org/forum/misc.php?do=showsmilies" target="_blank">Smilies</a> are <strong>On</strong></div> <div><a rel="nofollow" href="http://www.flepstudio.org/forum/misc.php?do=bbcode#imgcode" target="_blank">[IMG]</a> code is <strong>On</strong></div> <div>HTML code is <strong>On</strong></div><div><a rel="nofollow" href="http://www.flepstudio.org/forum/misc.php?do=linkbacks#trackbacks" target="_blank">Trackbacks</a> are <strong>On</strong></div> <div><a rel="nofollow" href="http://www.flepstudio.org/forum/misc.php?do=linkbacks#pingbacks" target="_blank">Pingbacks</a> are <strong>On</strong></div> <div><a rel="nofollow" href="http://www.flepstudio.org/forum/misc.php?do=linkbacks#refbacks" target="_blank">Refbacks</a> are <strong>On</strong></div> </div></td> </tr> </tbody> </table> </td> <td class="smallfont" align="right"> <table cellpadding="0" cellspacing="0" border="0"> <tr> <td> <div class="smallfont" style="text-align:left; white-space:nowrap"> <form action="http://www.flepstudio.org/forum/forumdisplay.php" method="get"> <input type="hidden" name="s" value="694470f13b04fe024658a48ebca84a89" /> <input type="hidden" name="daysprune" value="" /> <strong>Forum Jump</strong><br /> <select name="f" onchange="this.form.submit();"> <optgroup label="Site Areas"> <option value="cp" >User Control Panel</option> <option value="pm" >Private Messages</option> <option value="subs" >Subscriptions</option> <option value="wol" >Who's Online</option> <option value="search" >Search Forums</option> <option value="home" >Forums Home</option> </optgroup> <optgroup label="Forums"> <option value="1" class="fjdpth0" > Flash CS3 Flash CS4</option> <option value="40" class="fjdpth1" >    Video tutorials in ITALIANO</option> <option value="2" class="fjdpth1" >    Flash Italiano</option> <option value="25" class="fjdpth2" >        Utilità di FlepStudio</option> <option value="23" class="fjdpth2" >        Articoli e tutorials</option> <option value="31" class="fjdpth2" >        Componenti di FlepStudio</option> <option value="30" class="fjdpth2" >        Utilità degli utenti di FlepStudio</option> <option value="37" class="fjdpth2" >        Flash CS3 base - tutorials</option> <option value="29" class="fjdpth2" >        Actioscript 3.0 base - tutorials</option> <option value="24" class="fjdpth2" >        Programmazione Orientata agli Oggetti - tutorials</option> <option value="5" class="fjdpth2" >        Componenti</option> <option value="19" class="fjdpth2" >        Flash CS3 | PHP | mySQL</option> <option value="20" class="fjdpth2" >        AIUTO utilità free</option> <option value="22" class="fjdpth2" >        Flash CS3 Design</option> <option value="3" class="fjdpth2" >        Actionscript 3.0 base</option> <option value="4" class="fjdpth2" >        Actionscript 3.0 avanzato</option> <option value="33" class="fjdpth2" >        CSS | HTML</option> <option value="41" class="fjdpth2" >        FLEX builder 3</option> <option value="43" class="fjdpth2" >        PhotoShop</option> <option value="47" class="fjdpth2" >        CS4 Articoli e tutorials</option> <option value="48" class="fjdpth2" >        CS4 Utilità di FlepStudio</option> <option value="49" class="fjdpth2" >        CS4 Utilità degli utenti di FlepStudio</option> <option value="53" class="fjdpth2" >        Flash CS4</option> <option value="56" class="fjdpth2" >        Flash CS4 Design</option> <option value="58" class="fjdpth2" >        Componenti CS4</option> <option value="59" class="fjdpth2" >        Componenti CS4 di FlepStudio</option> <option value="8" class="fjdpth2" >        Off Topic - Libera la mente</option> <option value="77" class="fjdpth3" >            Video Giochi</option> <option value="71" class="fjdpth2" >        Siti Flash</option> <option value="73" class="fjdpth1" >    Flash English</option> <option value="27" class="fjdpth2" >        FlepStudio utilities</option> <option value="26" class="fjsel" selected="selected">        Tutorials</option> <option value="32" class="fjdpth2" >        FlepStudio components</option> <option value="39" class="fjdpth2" >        FlepStudio users utilities</option> <option value="36" class="fjdpth2" >        Actionscript for beginners - tutorials</option> <option value="28" class="fjdpth2" >        Object Oriented Programming - tutorials</option> <option value="16" class="fjdpth2" >        Components</option> <option value="75" class="fjdpth2" >        HTML and CSS</option> <option value="38" class="fjdpth2" >        PHP | mySQL | Flash CS3</option> <option value="21" class="fjdpth2" >        HELP free utilities</option> <option value="14" class="fjdpth2" >        Actionscript 3.0 newbies</option> <option value="15" class="fjdpth2" >        advanced Actionscript 3.0</option> <option value="42" class="fjdpth2" >        Flex builder 3 ENG</option> <option value="45" class="fjdpth2" >        PhotoShop ENG</option> <option value="61" class="fjdpth2" >        CS4 FlepStudio utilities</option> <option value="60" class="fjdpth2" >        Flash CS4 Tutorials</option> <option value="62" class="fjdpth2" >        CS4 FlepStudio users utilities</option> <option value="65" class="fjdpth2" >        CS4</option> <option value="69" class="fjdpth2" >        CS4 Components</option> <option value="70" class="fjdpth2" >        FlepStudio CS4 components</option> <option value="18" class="fjdpth2" >        Off Topics</option> <option value="76" class="fjdpth3" >            Video Games</option> <option value="72" class="fjdpth2" >        Flash websites</option> </optgroup> </select><input type="submit" class="button" value="Go" /> </form> </div> </td> </tr> </table> </td> </tr> </table> <!-- /forum rules and admin links --> <br /> <table class="tborder" cellpadding="6" cellspacing="0" border="0" width="100%" align="center"> <thead> <tr> <td class="tcat" width="100%" colspan="5"><h4> <a style="float:right" href="/forum/tutorials/451-how-read-view-rss-flash-cs3.html#top" onclick="return toggle_collapse('similarthreads')"><img id="collapseimg_similarthreads" src="http://www.flepstudio.org/forum/images/buttons/collapse_tcat.gif" alt="" border="0" /></a> Similar Threads<a name="similarthreads"></a> </h4></td> </tr> </thead> <tbody id="collapseobj_similarthreads" style=""> <tr class="thead" align="center"> <td class="thead" width="40%">Thread</td> <td class="thead" width="15%" nowrap="nowrap">Thread Starter</td> <td class="thead" width="20%">Forum</td> <td class="thead" width="5%">Replies</td> <td class="thead" width="20%">Last Post</td> </tr> <tr> <td class="alt1" align="left"> <span class="smallfont"> <a href="http://www.flepstudio.org/forum/tutorials/448-flash-cs3-php-mysql-how-view-number-registered-users-vbulletin.html" title="Greetings to all! In this article, we will see how to combine flash with the now famous vBulletin. We will see how to create a SWF, which...">Flash CS3 - PHP - mySQL, how to view the number of registered users from vBulletin</a></span> </td> <td class="alt1" nowrap="nowrap"><span class="smallfont">Flep</span></td> <td class="alt1" nowrap="nowrap"><span class="smallfont">Tutorials</span></td> <td class="alt1" align="center"><span class="smallfont">0</span></td> <td class="alt1" align="right"><span class="smallfont">25-09-07 <span class="time">16:29</span></span></td> </tr> </tbody> </table> <br /> <br /> <div class="smallfont" align="center">All times are GMT. The time now is <span class="time">11:56</span>.</div> <br /> </div> </div> </div> <!-- / close content container --> <!-- /content area table --> </div> <form action="http://www.flepstudio.org/forum/" method="get"> <table id="vbseo_bottom_menu" cellpadding="6" cellspacing="0" border="0" width="95%" class="page" align="center"> <tr> <td id="vbseo_bottom_menu_left_corner" class="tfoot"></td> <td class="tfoot"> <select name="langid" onChange="switch_id(this, 'lang')"> <optgroup label="Quick Language Chooser"> <option value="1" class="" selected="selected">-- English (US)</option> <option value="2" class="" >-- Italiano</option> </optgroup> </select> </td> <td class="tfoot" align="right" width="100%"> <div class="smallfont"> <strong> <a href="http://www.flepstudio.org">Forum Flash CS3 Flash CS4</a> - <a href="http://www.flepstudio.org/forum/archive/">Archive</a> - <a href="/forum/tutorials/451-how-read-view-rss-flash-cs3.html#top" onClick="self.scrollTo(0, 0); return false;">Top</a> </strong> </div> </td> <td id="vbseo_bottom_menu_right_corner" class="tfoot"></td> </tr> </table> </form> </div> <div align="center"> <div class="smallfont" align="center"> <!-- Do not remove this copyright notice --> Powered by vBulletin version 3.7.4<br />Copyright ©2000 - 2009, Jelsoft Enterprises Ltd. <br /><!-- google_ad_section_start(weight=ignore) -->Search Engine Optimization by <a rel="nofollow" href="http://www.vbseo.com/1178/">vBSEO</a> 3.2.0 RC4<!-- google_ad_section_end --><br /> <a href="http://www.flepstudio.org/forum/sitemap_index.xml.gz"><strong title="la sitemap del forum">Forum SiteMap</strong></a> <!-- Do not remove this copyright notice --> </div> <div class="smallfont" align="center"> <p> <!-- Do not remove <img src="http://www.flepstudio.org/forum/cron.php?rand=1231415760" alt="" width="1" height="1" border="0" /> or your scheduled tasks will cease to function --> <img src="http://www.flepstudio.org/forum/cron.php?rand=1231415760" alt="" width="1" height="1" border="0" /> <!-- Do not remove <img src="http://www.flepstudio.org/forum/cron.php?rand=1231415760" alt="" width="1" height="1" border="0" /> or your scheduled tasks will cease to function --> <br> </p> </div> </div> <script type="text/javascript"> <!-- // Main vBulletin Javascript Initialization vBulletin_init(); //--> </script> <script type="text/javascript"> Rounded('rounded', 10, 10); </script> <script type="text/javascript"> Rounded2('rounded2', 10, 10, 0, 0); </script> <script type="text/javascript"> Rounded3('rounded3', 0, 0, 10, 10); </script> <!-- temp --> <div style="display:none"> <!-- thread rate --> <!-- / thread rate --> </div> <div class="vbmenu_popup" id="linkbacktools_menu" style="display:none"> <table cellpadding="4" cellspacing="1" border="0"> <tr> <td class="thead">LinkBack<a name="goto_linkback"></a></td> </tr> <tr> <td class="vbmenu_option"><img class="inlineimg" src="http://www.flepstudio.org/forum/images/vbseo/linkback_url.gif" alt="LinkBack URL" /> <a href="http://www.flepstudio.org/forum/tutorials/451-how-read-view-rss-flash-cs3.html" onclick="prompt('Use the following URL when referencing this thread from another forum or blog.','http://www.flepstudio.org/forum/tutorials/451-how-read-view-rss-flash-cs3.html');return false;">LinkBack URL</a></td> </tr> <tr> <td class="vbmenu_option"><img class="inlineimg" src="http://www.flepstudio.org/forum/images/vbseo/linkback_about.gif" alt="About LinkBacks" /> <a rel="nofollow" href="http://www.flepstudio.org/forum/misc.php?do=linkbacks">About LinkBacks</a></td> </tr> <tr> <td class="thead">Bookmark & Share</td> </tr> <tr><td class="vbmenu_option"><img class="inlineimg" src="http://www.flepstudio.org/forum/images/vbseo/digg.gif" alt="Digg this Thread!" /> <a rel="nofollow" href="http://digg.com/submit?phase=2&url=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html&title=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank">Digg this Thread!</a><a name="vbseodm_0"></a></td></tr><tr><td class="vbmenu_option"><img class="inlineimg" src="http://www.flepstudio.org/forum/images/vbseo/delicious.gif" alt="Add Thread to del.icio.us" /> <a rel="nofollow" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html&title=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank">Add Thread to del.icio.us</a><a name="vbseodm_1"></a></td></tr><tr><td class="vbmenu_option"><img class="inlineimg" src="http://www.flepstudio.org/forum/images/vbseo/technorati.gif" alt="Bookmark in Technorati" /> <a rel="nofollow" href="http://technorati.com/faves/?add=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html" target="_blank">Bookmark in Technorati</a><a name="vbseodm_2"></a></td></tr><tr><td class="vbmenu_option"><img class="inlineimg" src="http://www.flepstudio.org/forum/images/vbseo/furl.gif" alt="Furl this Thread!" /> <a rel="nofollow" href="http://furl.net/storeIt.jsp?u=http%3A%2F%2Fwww.flepstudio.org%2Fforum%2Ftutorials%2F451-how-read-view-rss-flash-cs3.html&t=How+to+read+and+view+a+RSS+with+Flash+CS3" target="_blank">Furl this Thread!</a><a name="vbseodm_3"></a></td></tr> </table> </div> <script type="text/javascript"><!-- var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); //--> </script> <script type="text/javascript"><!-- var pageTracker = _gat._getTracker("UA-1789862-3"); pageTracker._setVar("member"); pageTracker._initData(); pageTracker._trackPageview(); //--> </script> </body> </html>