NavigateToURL - RSS Feed Reader Linking Issue

Hi, I am working on an RSS feed reader. The reader pulls blog entries just fine, but the results are not clickable. Tried numerous variations of "navigateToURL", but am relatively new to the Flex framework. Is there a way to make generated feed clickable? See code below:
<?xml version='1.0' encoding='UTF-8'?>
<s:Application xmlns:d="http://ns.adobe.com/fxg/2008/dt"
               xmlns:fx="http://ns.adobe.com/mxml/2009"
               xmlns:s="library://ns.adobe.com/flex/spark"
               xmlns:mx="library://ns.adobe.com/flex/halo"
               xmlns:feed="services.feed.*"
               width="275" height="325" backgroundColor="#E2E7E9" preloaderChromeColor="#E2E7E9"
               viewSourceURL="srcview/index.html">
    <!-- Blog Feed 1.0 -->
    <!-- Properties of the parent ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <!-- Metadata ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <!-- Styles ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <!-- Script ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <fx:Script>
        <![CDATA[
            import mx.events.FlexEvent;
            import flash.net.navigateToURL;
            protected function list_creationCompleteHandler(event:FlexEvent):void
                getDataResult.token = feed.getData();
            public function feed_clickHandler(event:MouseEvent):void
                navigateToURL(new URLRequest("http://blog.mysite.com/feed/"+getDataResult.lastResult.title));
        ]]>
    </fx:Script>
    <!-- Script ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <!-- Declarations ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <fx:Declarations>
        <s:CallResponder id="getDataResult"/>
        <feed:Feed id="feed" showBusyCursor="true"/>
    </fx:Declarations>
    <!-- Declarations ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <!-- UI components ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <fx:DesignLayer d:userLabel="Content">
        <s:BitmapImage d:userLabel="Shape 2" x="1" y="64" smooth="true"
                       source="@Embed('/assets/images/PSM-RSS-Feed/Shape 2.png')"/>
        <s:BitmapImage d:userLabel="line highlight" x="263" y="66" smooth="true"
                       source="@Embed('/assets/images/PSM-RSS-Feed/line highlight.png')"/>
    </fx:DesignLayer>
    <fx:DesignLayer d:userLabel="Feed Item">
    </fx:DesignLayer>
    <fx:DesignLayer d:userLabel="Scrollbar">
        <s:List id="list" x="4" y="64" click="feed_clickHandler(event)"
                creationComplete="list_creationCompleteHandler(event)"
                skinClass="components.FeedDataListSkin4">
            <s:AsyncListView list="{getDataResult.lastResult}"/>
        </s:List>
    </fx:DesignLayer>
    <fx:DesignLayer d:userLabel="Header">
        <s:BitmapImage d:userLabel="Shape 1" x="1" y="1" smooth="true"
                       source="@Embed('/assets/images/PSM-RSS-Feed/Shape 1.png')"/>
        <s:BitmapImage d:userLabel="Lines" x="12" y="43" smooth="true"
                       source="@Embed('/assets/images/PSM-RSS-Feed/Lines.png')"/>
        <s:BitmapImage d:userLabel="Pomona Swap Meet" x="11" y="8" smooth="true"
                       source="@Embed('/assets/images/PSM-RSS-Feed/Pomona Swap Meet.png')"/>
        <s:BitmapImage d:userLabel="Blog" x="184" y="31" smooth="true"
                       source="@Embed('/assets/images/PSM-RSS-Feed/Blog.png')"/>
    </fx:DesignLayer>
    <!-- UI components ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
</s:Application>
I tried to connect a click event to the feed "title", but I'm not sure that the mouse event function is correct, or that I have placed the "clickHandler(event)" in the right location. Any thoughts would be appreciated.
Thx.

apex.oracle.com is locked down pretty tight since it is a free service.
I'm surprised that running a restricted Package (DBMS_NETWORK_ACL_ADMIN) didn't throw an error and laugh at you.
If you want to test that app, you must bring it "in house".
MK

Similar Messages

  • RSS feed reader stopped working

    Hi,
    I have an RSS feed reading function that worked just fine until yesterday.  I grab an RSS feed from google news using cfhttp and then parse it using XMLParse.  I am attaching the code below.
    Does anyone know if anything changed at Google or somewhere else that would cause my code to stop working?  Instead of the expected results, I see the browser saying the page is loading but never get any results.
    Perhaps there is a parameter I never set in the CFHTTP line and skated by without it for all this time.  It is definitely hanging up on the CFHTTP call.
    Thanks for the help.
    With relation to the code, the search term I am using is "football" and the searchtype is "AND".
    <CFPARAM NAME="newsfeed_start" DEFAULT="1">
    <CFPARAM NAME="newsfeed_end" DEFAULT="5">
    <CFQUERY DATASOURCE="#sitedatasource#" NAME="otherinfo">
    SELECT newssearchterm, newssearchtype
    FROM otherinfo
    WHERE siteid = #currentsiteid#
    </CFQUERY>
    <CFSET newsterm = replace(otherinfo.newssearchterm," ","+","all")>
    <CFIF otherinfo.newssearchtype EQ "AND">
    <cfhttp url="http://news.google.com/news?hl=en&ned=us&q=#newsterm#&btnG=Search+News&output=rss" method="GET" resolveurl="No" charset="utf-8" userAgent="firefox"></cfhttp>
    <CFELSE>
    <cfhttp url="http://news.google.com/news?as_q=&svnum=10&as_scoring=r&hl=en&ned=us&aq=f&ie=UTF-8&btnG=Go ogle+Search&as_epq=&as_oq=#newsterm#&as_eq=&as_drrb=q&as_qdr=&as_mind=1&as_minm=1&as_maxd= 31&as_maxm=1&as_nsrc=&as_nloc=&geo=&as_occt=any&aq=f&output=rss" method="GET" resolveurl="No" charset="utf-8" userAgent="firefox"></cfhttp>
    </CFIF>
    <cfset my_news_xml=XMLParse(cfhttp.FileContent)>
    <CFIF len(my_news_xml) GT 1200>
    <cfoutput>
    <CFIF ArrayLen(my_news_xml.rss.channel.item) GT newsfeed_end>
          <CFSET newsfeed_end = newsfeed_end>
    <CFELSE>
          <CFSET newsfeed_end = ArrayLen(my_news_xml.rss.channel.item)>
    </CFIF>
    <cfloop index="x" from="#newsfeed_start#" to="#newsfeed_end#">
    <LI><A HREF="#my_news_xml.rss.channel.item
    [x].link.xmlText#">#my_news_xml.rss.channel.item[x].title.xmlText#</A></LI></cfloop>
    </cfoutput>
    <CFELSE>
    <CFOUTPUT>There are no headlines matching your search term: #newsterm#
    </CFOUTPUT></CFIF>

    RSS feed was replaced by web-admin, works now.

  • RSS feed reader in Labview

    Does anyone have an example of a Labview based RSS feed reader?
    I would like to be able to grab the current weather conditions from the NWB RSS feeds
    Since we are right next to the local airport it would be cheaper than installing our own weather station.
    If not anyone got a good explanation of what an RSS feed is so I could write my own?

    They should be out there somewhere.
    However to get started have a look at my 'getTwitter Status'
    If you install the JKI Easy XML toolkit you will have an example RSS reader in the  Example Finder
    Ton
    Message Edited by TCPlomp on 26-04-2010 10:41 PM
    Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
    Nederlandse LabVIEW user groep www.lvug.nl
    My LabVIEW Ideas
    LabVIEW, programming like it should be!

  • Where's the RSS feed reader

    in  my old BBBold 9780, I used the RSS feed reader to subscribe to feeds of my fav blogs and read them... I cant seem to find the similar function in the Q10, can anyone help. There is a "reader" thingy in Browser, but it doesnt do anythng...many thanks.

    There are tons of RSS readers in the BlackBerry World

  • Nokia N8 RSS feed reader bug

    I have a problem with my RSS feed reader on my N8. When i have selected an RSS feed to start reading it says "Tuntematon virhe" english something like "unknown problem" Has anyone other faced problem like this?
    Solved!
    Go to Solution.

    Hardtothinkname wrote:
    And is there anyway to fix this?
    The most common "fix" so far has been to uninstall Fring - do you have that installed ?

  • IPad Mail shows RSS Feeds and Sync Issues folders from Outlook2007

    My iPad mail syncs with Outlook 2007, how can I prevent is from showing the RSS Feeds and Sync Issues folders as these take up a lot of space, are annoyinh and useless to me

    Hi The device could be corrupted in exchange. Check out my entry below and see if it helps http://blog.theinfraguys.com/2014/04/removing-corrupt-activesync-device-from.html
    Blog: Http://theinfraguys.com
    Follow me at Facebook http://www.facebook.com/theinfraguys
    Please remember to click “Mark as Answer” on the answer if it helps you in anyway

  • What is the best rss feed reader for my mac?

    what is the best rss feed reader for my mac?  I have a macbook pro, my OS is Mountain Lion, and browser is firefox.  Thanks

    What's best is a matter of personal preference.  Search Google or the App Store and read the reviews.

  • Adobe now providing RSS Feeds to Top Issues

    Adobe are now providing RSS Feeds to Photoshop Top Issues and Recent Knowledgebase Tech docs.
    Links to these feeds are now displayed in the Forum Header. You should drag those links to a newsreader or RSS Reader Browser add-on in order to view them.

    I believe that there are a number of features of Bridge that are only available when you have more of the Suite than just Photoshop.
    Bridge Center and its contents is one of them.
    That would make sense because Bridge Center is really designed to provide links between the various applications that are part of the CS2 Suite.
    Bridge Center provides numerous tools: Synchronized Color Management, Version Cue project index (I don't personally use VC at this time); Tips & Tricks and "Help" tabs; the RSS Reader; and Management/Indexing and hot link application launching for recent Files, Folders, and File Groups (files from different applications that are used in a particular job).

  • RSS Feed Reader in Catalyst?

    Hi everyone,
    Is there a way for a Flash Widget created in Catalyst to read an RSS feed? If so, how do I go about doing that?
    Thanks a bunch!
    Rob

    Sorry.  That needs to be fixed.
    Here is an article from the Flex Developers Center:
    http://www.adobesystems.ca/devnet/flex/articles/flashbuilder4_http_connection_02.html
    And a resource for learning Flex in general (Flash Builder is the development environment).
    http://www.adobe.com/devnet/flex/videotraining/
    The particular area you want to look at is Requesting and retrieving XML data from the server.
    http://www.adobe.com/devnet/flex/articles/flashbuilder4_http_connection_03.html
    Rss feeds have a common XML structure.  Here's a reference on the rss xml structure. 
    http://www.webreference.com/authoring/languages/xml/rss/feeds/
    You'll need to understand this structure so that you know which node of rss content to access. (item, title, description, link)
    This would make a nice tutorial or blog post showing workflow from Photoshop > Flash Catalyst > Flash Builder.
    Best,
    Tanya

  • Flash Deal Of The Day RSS Feed Reader

    I need to design a flash widget for MySpace that reads an rss feed and just shows the latest entry. I have seen flash rss feed widgets before but they show all the listings. I need it to check every day at 1:00am for the new one and load it automatically from a third party site (feedburner). I have some knowledge of flash but none in actionscript. I use the Creative Suite CS4. I am a fast learner so please explain in depth so I get the concept.
    Thank you in advance for any help.

    Ok I went through the tutorial in the video and everything seems to be working alright except I need to include links.
    Here is a portion of theXML file that is read:
    <?xml version="1.0" encoding="UTF-8"?>
    <?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><!-- generator="WordPress/2.7.1" --><rss version="0.92">
    <channel>
    <title>SizzleTwist</title>
    <link>http://blog.sizzletwist.com</link>
    <description>Sizzling Hot Prices on Lots of Cool Stuff!!</description>
    <lastBuildDate>Tue, 25 Aug 2009 13:47:54 +0000</lastBuildDate>
    <docs>http://backend.userland.com/rss092</docs>
    <language>en</language>
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/Sizzletwist" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
      <title>Home Surveillance System: Mini Wireless Security Camera</title>
      <description>We invest a lot for our luxury to make life comfortable but while investing in luxury we often forget to protect it and make the life unsafe and unsecure.
    Homeland Security 2.4 Ghz Wireless Motion Activated Security Camera and Receiver is a perfect solution to bring the safest and most ...</description>
      <link>http://blog.sizzletwist.com/index.php/home-surveillance-system-mini-wireless-security-came ra/</link>
       </item>
    <item>
      <title>National Geographic Egana Watch Yellow Chrono NG712GKSY</title>
      <description>You are right; National Geographic did not manufacturer this watch. This high quality watch was made by Egana for National Geographic. Egana is the manufacturer of brands such as Pierre Cardin, PUMA, and Carrera. When I first saw these watches I was not only impressed by the looks but also pleasantly ...</description>
      <link>http://blog.sizzletwist.com/index.php/national-geographic-egana-watch-yellow-chrono-ng712g ksy/</link>
       </item>
    <item>
      <title>High Quality Light Weight Electric Blaster Sunglass</title>
      <description>Quality of sunglasses includes high quality of lens and frame. But the benefit gets multiplied if it is design by the well-known artist.
    The Electric Blaster Sunglasses Trans Brown Stripe with Bronze Lens has high quality of polycarbonate lens, 8-Base Grylamide frame and it is design by the well-known artist- Ozzie Wright.
    Pro-surfer, musician, and ...</description>
      <link>http://blog.sizzletwist.com/index.php/high-quality-light-weight-electric-blaster-sunglass/</link>
       </item>
    The AS code just loads the description when clicked on. I need it to include the link located in the link tags.
    Here is the As code:
    var loader:URLLoader = new URLLoader();
    loader.addEventListener(Event.COMPLETE, onLoaded);
    lb.addEventListener(Event.CHANGE, itemChange);
    function itemChange(e:Event):void
    ta.text = lb.selectedItem.data;
    var xml:XML;
    function onLoaded(e:Event):void
    xml = new XML(e.target.data);
    var il:XMLList = xml.channel.item;
    for(var i:uint=0; i<il.length(); i++)
      lb.addItem({data:il.description.text()[i],
          label:il.title.text()[i]});
    loader.load(new URLRequest("http://feeds2.feedburner.com/SizzleTwist"));
    I want it to display the description then the blog link. As I mentioned I am just beginning with action script so I have no iead what to do.

  • RSS Feed on iWeb Issue

    Using: iWeb ver 3.0.3
    I'm having an issue with RSS Feed button on my Blog Page after the site is published.
    When a vistor press the RSS Feed they get ... Error 404 not found
    Essentially the page that iWeb is sending the user to is
    http://www.website.com/site-name-on-iweb/Blog/rss.xml instead of ...
    http://www.website.com/Blog/rss.xml
    The same issue appears when you try to view the website the site-name-on-iweb appears instead of the user being sent to ...
    http://www.website.com iWeb takes you to http://www.website.com/site-name-on-iweb
    Any help would be sincerely appreciated.  Thanks

    Hi LPopoff,
    Per my knowledge, there is no difference for Form library with the RSS Feed.
    Please clear the cache in Internet Explorer(IE) and then check the results again.
    It seems that IE has cached the feed data and display the result the same as the original one.
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • Why SP2013 generate RSS feed subscription link with feeds:// not feed://

    We are using SP2013 enterprise on-premise. Our users are using IE9. On any list or document library, click on top ribbon "List" -> RSS feed, it will goto a page with URL like
    /_layouts/15/listfeed.aspx?List=xxxxxxxxxxxxxxxxxxxxxx
    On the page there is a link "Subscribe this RSS feed". The link is redirecting to feeds://xxxxxxx. On my IE9 it throw a "web page cannot display" error. After some finding I think the protocol should be feed:// not feeds://. Is it a bug
    for SP2013 or MS do it by purpose?

    Hi Mark,
    Did you configure SSL for SharePoint web application(using https URL)?
    It seems that the feed protocol will change to feeds when you enable SSL for SharePoint web application.
    Please make sure that the Outlook 2013(office 2013) is installed in your environment.
    If not, install it and then compare the results.
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • RSS Feed Read Synchronization?

    I had posted this a couple of months ago and did not get a response. Just reposting it to see if anyone might have any ideas:
    I have multiple computers which I have synchronized my RSS feeds. My question is thus: Is there a way to synchronize the articles that you have marked read between computers? Most times, I come to a different computer and the articles that I have read one one computer are showing up as unread on the next computer. Can you have the read articles synchronized? I use Safari for Mac as well as Safari for Windows. I have MobileMe set up between all computers.

    Hi Zeff
    I'm assuming you are using Safari as your RSS reader:
    Keeping the feeds and bookmarks for that matter synchronized between computers is not an easy task. This is definitely a ''work in progress" on Apple's part.
    In theory, if you mark articles as read on one computer, then synch your bookmarks to the cloud and then on to the other computers, the article counts ought to comport. However, the actual result is sketchy at best. It used to work for me, however, over time, I found my RSS counts on my other two machines to be significantly out of synch. I filed a bug report with Apple (via the Safari Menu). Perhaps Snow Leopard will provide a better way to synch the feeds.

  • Integrating RSS feed reader into Fireworks Header

    Hello,
    I have a simple header for my website created in FW and I
    wish to embed an RSS news feed into the header area.
    Can you advise where (in FW or DW) to work and how I proceed.
    I am considering CARP for the aggregator (although I've never
    used CARP).
    Thanks for the advice,
    Jerry

    > I have a simple header for my website created in FW and
    I wish to embed an
    > RSS
    > news feed into the header area.
    FW is a graphics editor, so not the right app for it.
    > Can you advise where (in FW or DW) to work and how I
    proceed.
    You'd use DW and the appropriate back end
    programming/scripting needed.
    Which programming/scripting would depend on the server
    technologies you want
    to use.
    > I am considering CARP for the aggregator (although I've
    never used CARP).
    Then I imagine you would want to read about that on their web
    site, as that
    would be a specific application.
    -Darrel

  • Creating a RSS (feed) reader in Flash with AS2

    Hi everybody and thank you for reading. I´m working in a rss reader for my website, that has already a rss channel created. I created this in a file that is called news.rss. So I made the interface of the reader in Flash, and then continue inserting a code. But when I try the swf, it just shows the title of my channel, but any of my news. What is the problem? Here is my code: 
    var rssurl:String = "http://amorenaccion.netau.net/news.rss";
    //var rssurl:String = "unijimpe.xml";
    var rssxml:XML = new XML();
    rssxml.ignoreWhite = true;
    rssxml.load(rssurl);
    rssxml.onLoad = function() {
        var nodo:XMLNode = rssxml.firstChild.firstChild;
        var vtit:String = "";
        var vurl:String = "";
        var vdes:String = "";
        var vcon:String = "";
        for (i=0; i<nodo.childNodes.length; i++) {
            var snodo:XMLNode = nodo.childNodes[i];
            switch (snodo.nodeName) {
                case "title":
                    vtit = snodo.firstChild.nodeValue;
                break;
                case "link":
                    vurl = snodo.firstChild.nodeValue;
                break;
                case "description":
                    vdes = snodo.firstChild.nodeValue;
                break;
        txttitle.htmlText = "<a href=\"" + vurl + "\">" + vtit + "</a>";
        txtdescription.text = vdes;
        txtcontent.htmlText = vcon;
    function getContent(vxml) {
        var stit:String = "";
        var surl:String = "";
        var sdes:String = "";
        for (j=0; j<vxml.childNodes.length; j++) {
            var sxml:XMLNode = vxml.childNodes[j];
            switch (sxml.nodeName) {
                case "title":
                    vtit = sxml.firstChild.nodeValue;
                break;
                case "link":
                    vurl = sxml.firstChild.nodeValue;
                break;
                case "description":
                    vdes = sxml.firstChild.nodeValue;
                break;
        return "<a href=\""+vurl+"\"><b><font color=\"#990000\">"+vtit+"</font></b></a><br>"+vdes+"<br><br>";

    You should use the trace() function to see what values your code is processing for the loaded data.  Looking at the rss file itself it does not appear to be consistent with its structure, so you might need to check that out as well.

Maybe you are looking for

  • Sub:Stock report with sales unit of measurement - reg.,

    Hi guru's we have a requirement to have the stock report with sales unit of measure instead of base unit of measure can anybody guide me how to do this. thanks in advance tulja singh.

  • Basic Excise duty not flowing in Purchase order

    Hi, We are using TAX INJ and in version 4.7E. BED Percentage is not flowing in Purchase order, whereas E.cess andSEcess is flowing in PO. We have checked all the settings and also the replies in SDN forum on this issue. COuld anybody add further inpu

  • When I attempt to import a CD the CD does not show up in itunes

    I put a CD into my drive and the CD does not show up in itunes. As a matter of fact there are no import cd buttons in my itunes or in my file tabs. At first it was saying it was locating it but now nothing happens. I did get a new computer a month ag

  • Hyperlinks to PDF files with Excel XP will not open on Acrobat

    Hi all; I am having an issue with Acrobat Reader X. I am using Windows 7 x64 Pro, with Acrobat Reader X, and MS Office XP and try as I might, I cannot create an Hyperlink to a PDF document.  Excel says that "there is no program registered to open thi

  • VPN - FireWall : do i need to keep port open ?

    hi, when i try to turn off AFP port in the firewall settings, i can't connect to the AFP server anymore even when i have a VPN session open. i was under the impression that connections going trough the VPN would not need to have their ports open in t