Flash actionscript 3.0 With Rss Feed data

I have using as3.0 and get the data from rss.  I run the file rss data will be loaded.
But i open the swf and html file, Rss data can't load. i don't find the issue.
Pls any one tell me the correct solution.
This is Code:
//==========================================================
var rssLoader:URLLoader = new URLLoader();
var rssURL: URLRequest = new URLRequest ("http://new.kylottery.com/apps/rss/nextjackpots.rss")
rssLoader.addEventListener(Event.COMPLETE, rssLoaded);
rssLoader.load(rssURL);
//==========================================================
var rssXML:XML = new XML();
rssXML.ignoreWhitespace = true;
//==========================================================
function rssLoaded(evt:Event): void{
rssXML = XML(rssLoader.data);
//trace(rssXML.channel.item[0].description)
//trace(rssXML.channel.item[1].description)
mc_1.txt_0.text = rssXML.channel.item[0].description
//mc_2.txt_2.text = rssXML.channel.item[1].description
//trace(rssXML)
//==========================================================
thks,

When you run the SWF off a website you need permission to load content off an "alternate" domain. So if the domain the RSS is on differs from the domain the SWF is running from, the RSS domain will need a crossdomain.xml file that gives you permission to load data from that domain. Also in publish settings on SWF it should be set to allow accessing networks instead of access local files only.
If that's the case then you should get a security error:
http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/events/SecurityEr rorEvent.html
Just add a listener like the example and put a text field on the screen so if the error happens you can put the error text in it to see it. You're probably just getting that error.
Here's info on a crossdomain.xml and the various settings and examples of them:
http://learn.adobe.com/wiki/download/attachments/64389123/CrossDomain_PolicyFile_Specifica tion.pdf?version=1

Similar Messages

  • Problem with RSS feeds in AppleMail

    If anyone can help, I would greatly appreciate it. I have several RSS feeds that come in through AppleMail. Every so often, it stops receiving all of the feeds (I get an explanation point next to the the RSS header). After a day or so, it will start receiving feeds again. I have no problem getting e-mails... just my RSS feeds. Does anyone have any ideas?
    Thanks!

    I have just experienced the same problem with RSS feeds through AppleMail. A couple of days ago (just after I had upgraded to Aperture 3 - not sure if that's relevant) the exclamation mark appeared next to all the Mailboxes for my RSS feeds, and has not disappeared. If I click on the exclamation mark I get the message "there was an error updating the RSS feed 'Apple Hot News'. The RSS feed is temporarily unavailable because an internal error occurred".
    I have tried shutting down, and deleting the RSS plist - with no effect.
    Other details - the problem exists on a MacBook Pro, running Sno (v 10.6.2 - all updates applied) and Apple Mail v4.2. I can send / receive regular email. I also have an iMac (also running Sno 10.6.2 and Apple Mail v4.2) - RSS feeds work fine on this machine. Both machines use the same wireless broadband router.
    Grateful for any help. Thanks

  • 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.

  • Need help with rss feeds

    I am trying to get mutiple rss feeds auto update on the same page.
    Here is my code for the rss feeds that I have on separate pages and I would like to put on one page:
    PAGE 1
    <head> section
    var dsItem = new Spry.Data.YQLDataSet(
    'select * from xml where url="http://www.voip-news.com/rss/vnar.xml"',
    false,
    format:"xml",
    preparseFunc: function( strxml ){
    var xml = Spry.Utils.stringToXMLDoc( strxml ), ds = Spry.Data.XMLDataSet.getRecordSetFromXMLDoc( xml, "rss/channel/item" );
    return ds.data;
    <body> section
    <div class="MasterDetail">
      <p class="style10">Select a Channel:</p>
        <div spry:region="dsItem" id="MasterContainer" class="MasterContainer">
          <div spry:repeat="dsItem" spry:test="{ds_RowID}<4" spry:choose="choose">
            <div class="MasterColumn" spry:when="{ds_RowID} == {ds_CurrentRowID}" spry:select="MasterColumnSelected" spry:selectgroup="master" spry:selected="MasterColumnSelected" spry:hover="MasterColumnHover" spry:setrow="dsItem">{title}</div>
            <div class="MasterColumn" spry:default="default" spry:select="MasterColumnSelected" spry:selectgroup="master" spry:hover="MasterColumnHover" spry:setrow="dsItem">{title}</div>
          </div>
        </div>
        <br/>
        <div spry:detailregion="dsItem" class="DetailContainer">
          <div class="DetailColumn"><span class="style9">Category:</span>  <span>{category}</span></div>
          <div class="DetailColumn"><span class="style9">Published:</span>  <span>{pubDate}</span></div>
          <div class="DetailColumn"><span class="style9">Author:</span>  <span>{author}</span></div>
          <br/>
          <div class="DetailColumn"><span class="style9">Description:</span><br><span>{description}</span>  <bu tton onClick="MM_openBrWindow('{link}','','')">More...</button></div>
        </div>
        <br style="clear:both" />
      </div>
       <p class="style19"><a href="index.html">(Close)</a></p>
    </div>
    PAGE 2
    <head> section
    var dsItem = new Spry.Data.YQLDataSet(
    'select * from xml where url="http://www.networkcomputing.com/channel_feed.php?channel_name=UC%20&%2 0VoIP"',
    false,
    format:"xml",
    preparseFunc: function( strxml ){
    var xml = Spry.Utils.stringToXMLDoc( strxml ), ds = Spry.Data.XMLDataSet.getRecordSetFromXMLDoc( xml, "rss/channel/item" );
    return ds.data;
    <body> section
    <div class="MasterDetail">
      <p class="style10">Select a Channel:</p>
        <div spry:region="dsItem" id="MasterContainer" class="MasterContainer">
          <div spry:repeat="dsItem" spry:test="{ds_RowID}<4" spry:choose="choose">
            <div class="MasterColumn" spry:when="{ds_RowID} == {ds_CurrentRowID}" spry:select="MasterColumnSelected" spry:selectgroup="master" spry:selected="MasterColumnSelected" spry:hover="MasterColumnHover" spry:setrow="dsItem">{title}</div>
            <div class="MasterColumn" spry:default="default" spry:select="MasterColumnSelected" spry:selectgroup="master" spry:hover="MasterColumnHover" spry:setrow="dsItem">{title}</div>
          </div>
        </div>
        <br/>
        <div spry:detailregion="dsItem" class="DetailContainer">
          <div class="DetailColumn"><span class="style9">Category:</span>  <span>{category}</span></div>
          <div class="DetailColumn"><span class="style9">Published:</span>  <span>{pubDate}</span></div>
          <div class="DetailColumn"><span class="style9">Author:</span>  <span>{author}</span></div>
          <br/>
          <div class="DetailColumn"><span class="style9">Description:</span><br><span>{description}</span>  <bu tton onClick="MM_openBrWindow('{link}','','')">More...</button></div>
        </div>
        <br style="clear:both" />
      </div>
       <p class="style19"><a href="index.html">(Close)</a></p>
    </div>
    So basically i need to find out how to combine the two <head> sections with both links, so that when I place the body codes in their <div> tags they will grab the correct rss feeds.
    Thank you,
    cp

    Create a new data set as follows
    var dsItem2 = new Spry.Data.YQLDataSet(
        'select * from xml where url="http://www.voip-news.com/rss/vnar.xml"',
        false,
            format:"xml",
            preparseFunc: function( strxml ){
                var xml = Spry.Utils.stringToXMLDoc( strxml ), ds = Spry.Data.XMLDataSet.getRecordSetFromXMLDoc( xml, "rss/channel/item" );
                return ds.data;
    Also make sure that you change the HTML markup (data regions and iframe) to reflect this addition

  • I have read up, and am still having problems with RSS Feed

    Greetings Everyone.
    I really need some help with my RSS feed before I go insane. I would like to think I know what I am doing, but obviously there is some little (or big!) step I am overlooking.
    Ok here is my site: www.drewernst.com it is hosted by asmallorange.com
    My pocast is at www.drewenst.com/podcast
    This is the rss feed iWeb generated: feed://www.drewernst.com/podcast/The%20Jeff%20and%20Drew%20Podcast/rss.xml
    Now, from everything I have read so far - it seems that as long as you get the URL right when you are publishing to a folder, iWeb should do the rest. Also, it is important to put the whole folder containing your podcast in your root web folder otherwise it breaks the feed. Both of these things I have done. (obviously not correctly, or it would be working!)
    I read Many tutorials and topics I could find about this, but it still doesn't seem to work for me. Apple suggests taking the RSS feed an pasting it into itunes under Advanced menu "subscribe to podcast" to make sure your feed is valid before submitting to itunes.
    When I do this, I get an message saying "there was a problem downloading... An unknown error occurred (-50).
    I tried using a feed validator and it came back with so many errors. I just don't know that much about RSS, but i have been working on this for about a month and it's driving me crazy. No one I have asked at the apple store has been any more helpful than to suggest I just buy a .mac account and do it from there(honestly the nerve. wink.) I don't need .mac, I have my own website.
    Thanks in advance.
    Mr. Rss Crazy,
    Drew
    Oh, I tried to be as detailed as possible but if I left anything important out, please just ask...I will be watching this like a hawk.
    iMac 2.0ghz Core 2 Duo   Mac OS X (10.4.8)  

    So, my web-host said that it's a problem with the RSS feed, not there hosting.
    They pointed me to "Feed Validator" which I looked at before. I have a lot of errors.
    http://feedvalidator.org/check.cgi?url=http%3A%2F%2Fwww.drewernst.com%2Fpodcast% 2FThe%2520Jeff%2520and%2520Drew%2520Podcast%2Frss.xml
    Shouldn't Garageband and iWeb have taken care of these errors. I don't even know how I would correct them. I thought this was supposed to be a 1-2-3 process, like the documentation of both programs said.
    Sorry if I sound sarcastic, I am just frustrated.
    iMac 2.0ghz Core 2 Duo   Mac OS X (10.4.8)  

  • Issue with RSS Feed Service-Urgent

    Hi,
    1. I am using the service provided by UCM for using extracting details from the RSS feed.I tried using the service with a RSS feed url i.e.("http://rss.news.yahoo.com/rss/topstories") works fine and displays all results on my custom page.
    2. The same piece of code, I moved my client instance but found nothing happens not even I am getting any error. Only the thing I can see is a page loading and loading for long time.
    3. I found a document related to RSS feed it has mentioned to upload fragments into the SS which i did in my and client instance. The names are RSS_Feed.Zip and RSS FEEDS_FRAGMENT_LIB.zip.
    4. The feed URL provided when executed from browser in client and my instance displays feed, but when use it with service works on development instance works fine, but
    doesn't work on client instance.
    5. Below mentioned is the sample page which I am using to execute the feed.
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>
    <head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><!--$include ss_layout_head_info-->
    <title><!--$dDocTitle--></title>
    <script id="ssInfo" type="text/xml" warning="DO NOT MODIFY!">
    <ssinfo >
    </ssinfo>
    </script>
    </head>
    <body>
         <!--$feedUrl="http://rss.news.yahoo.com/rss/topstories",parseXml="true"-->
         <!--$executeService("GET_REMOTE_FEED")-->
              <ul class="userlist">
              <!--$loop RSS_ENTRIES-->
                   <li class="notopborder">
                        <span class="userdetails">
                             <span class="username"><!--$title--></span>
                             <span><!--$description--></span>
                             <span class="hours"><!--$pubDate--></span>
                        </span>
                        <div class="clear"></div>
                   </li>
              <!--$endloop-->
              <ul>
    </body>
    </html>
    Any kind of help is highly appreciated.
    Thanks,
    Abhijit
    Edited by: AbhijijitPr on Oct 12, 2010 12:47 PM
    Edited by: AbhijijitPr on Oct 12, 2010 12:58 PM

    I found the issue, the service provided by UCM i.e. the GET_REMOTE_FEED as when checked in the source code found doesn't support https. So any request made on https will give no result.
    Thanks,
    Abhijit

  • Help with RSS feed in home page

    I'm trying to place an RSS feed in my home page. I've
    followed this Dev
    Center guide:
    http://tinyurl.com/ewbdv
    I've gotten everything to work perfectly locally. However,
    when I upload
    the files it won't work online here:
    http://tinyurl.com/ootyn
    The error I receive is:
    Could not find the ColdFusion Component
    burnettcom.includes.MM_XSLTransform.MM_XSLTransform.
    Please check that the given name is correct and that the
    component
    exists. The error occurred in
    C:\domains\burnettcom.com\wwwroot\home.cfm: line 28
    26 : <!--- XSL Transformation --->
    27 : <cfinvokeargument name="xml"
    value="
    http://www.burnettcom.com/blog/?feed=rss2">
    28 : <cfinvokeargument name="xsl"
    value="headlines.xsl">
    29 : </cfinvoke></div><!---end posts--->
    Instead of the path
    burnettcom.includes.MM_XSLTransform.MM_XSLTransform.
    shouldn't it be
    burnettcom/includes/MM_XSLTransform/MM_XSLTransform.cfm
    This is the only thing that I can see that would be wrong.
    Can anyone help me to get this to work online?
    Thanks in advance.

    Thanks A3gis, I just got that part working. I've configured
    it to
    display the title and date for each post.
    The only problem is that the date appears as:
    Tue, 18 Jul 2006 04:38:07 +0000
    I would prefer the date to appear as:
    July 18, 2006
    or
    6.18.06
    Does anyone know how to make this work?
    P.S. Here's the xls file:
    P.S. my XSL fragment is:
    <?xml version="1.0" encoding="iso-8859-1"?><!--
    DWXMLSource="
    http://www.burnettcom.com/blog/?feed=rss2"
    -->
    <!DOCTYPE xsl:stylesheet [
    <!ENTITY nbsp "&#160;">
    <!ENTITY copy "&#169;">
    <!ENTITY reg "&#174;">
    <!ENTITY trade "&#8482;">
    <!ENTITY mdash "&#8212;">
    <!ENTITY ldquo "&#8220;">
    <!ENTITY rdquo "&#8221;">
    <!ENTITY pound "&#163;">
    <!ENTITY yen "&#165;">
    <!ENTITY euro "&#8364;">
    ]>
    <xsl:stylesheet version="1.0"
    xmlns:xsl="
    http://www.w3.org/1999/XSL/Transform"
    xmlns:wfw="
    http://wellformedweb.org/CommentAPI/"
    xmlns:content="
    http://purl.org/rss/1.0/modules/content/"
    xmlns:dc="
    http://purl.org/dc/elements/1.1/">
    <xsl:output method="html" encoding="iso-8859-1"/>
    <xsl:param name="ItemsPerPage" select="10" />
    <xsl:template match="/">
    <xsl:for-each select="rss/channel/item[position()
    &lt;= $ItemsPerPage]">
    <xsl:sort select="dc:date" order="descending" />
    <p>
    <a href="{link}"><xsl:value-of select="title"/>
    </a><br />
    <xsl:value-of select="pubDate"/>
    </p>
    </xsl:for-each>
    </xsl:template>

  • Problem with RSS Feed & iTunes U

    Hello:
    The following RSS feed passes feedvalidator with two minor errors, and other feeds have these similar two minor errors but work with iTunes U.
    But, the following feed doesn't work with iTunes U.
    http://www.kued.org/productions/utahnow/?action=videocast&cat=4
    Any suggesitons?

    An additional note: the error message iTunesU is returning is:
    Error
    iTunes U could not update the content in this group because iTunes U could not download the specified RSS feed. Verify that the RSS feed specified in the Feed URL is available, and then try again.
    Clearly the feed is "available", and is in fact error free:
    http://feedvalidator.org/check.cgi?url=http%3A%2F%2Fwww.kued.org%2Fproductions%2 Futahnow%2F%3Faction%3Dvideocast%26cat%3D4
    I've been through the feed pretty thoroughly and cannot see what in it could be giving iTunesU grief.

  • Something is wrong with rss feeds

    I am using Safari 5.0.1 on OSX 10.5.8. Recently Safari stopped deleting old rss feeds. I went to Safari's preferences->RSS and clicked "Remove Now".
    Now I have a problem where my system.log file is filling up with lines and lines like this:
    Sep 5 13:12:02 ip-address-sanitized PubSubAgent[371]: FileDeleter: <file://localhost/Users/myusername/Library/PubSub/Feeds/d7e340ff6462708b5519d65 d3faab82ecb6c4c37/735a8fc0b5f5f498d021979b0c3fa7458b49e3cd.xml> got CFURL error -10
    Looking for these files I can see they don't exist. I do find the folder, and plenty of files inside, but no file named the same.
    Any ideas?

    I did that, and accidentally added the bold too. But now I can't change the bold so I just left it in. This part of the log includes my ip address in every entry.

  • Safari 4 slower loading with RSS feeds

    Don't know what happened in Safari 4 (4.0.2), but now it is much slower loading initially because of the way RSS feeds in the bookmarks bar are now being handled. I can not use the browser until all the RSS feeds have been checked. Even when clicking on an RSS item within a particular page such as CNN, the time to open that feed is significantly slower.
    There has always been occasional problems with the bookmark bar for RSS feeds showing there are unread feeds, yet nothing shows unread beside the individual feeds. The problem now happens almost every day. The only solution is to choose the view all RSS feeds and find the unread items.
    I am also noticing that web page loading is also much slower than it was in 3.x. Get tired of that spinning loading at the right of the address entry bar. The beach ball is more interesting because it is in color.
    I have 18 Mbps broadband, so that isn't the problem, as all the slowdowns happened as soon as I started using Safari 4.
    So much for snappier loading

    I don't understand why you're using Safari for your RSS feeds; it's not an ideal solution compared to a dedicated RSS reader like Vienna, NetNewsWire, or Newsfire; I'd use one of those and turn off RSS feeds in Safari's preferences pane.
    But Safari 4 is faster than Safari 3; it isn't for you because of a variety of factors, so let's change them and see if we can't speed things up. Here's what you can do:
    Try changing your Network settings to use OpenDNS
    Go to ~/Library/Caches/com.apple.Safari and delete the contents of that folder, then use the Get Info panel to Lock the folder.
    Go to ~/Library/Caches/Metadata/Safari and delete the contents of that folder, then use the Get Info panel to Lock the folder.
    Go to ~/Library/Safari and delete these files:
    Downloads.plist
    History.plist
    LastSession.plist
    TopSites.plist (if you don't want to use Top Sites, Lock that file right after you restart.)
    WebpageIcons.db
    Restart Safari and see if your problem is solved.

  • Problems with rss feeds in Firefox.

    When i enter an rss feed url into firefox, it automatically switches to safari to open the url.  Firefox is my default browser; I am trying to set up rss feeds in Firefox.  How do I prevent this from happening so that these urls will open in Firefox?

    wast3 wrote:I have this too. Green background when gst-vaapi is installed. Totem is also affected. VAAPI itself works fine in mplayer and vlc. First generation Core i7 here with Intel HD Video. Has been like this for months now...
    Same problem here... And in this thread some experience the same behavior: https://bbs.archlinux.org/viewtopic.php … 1#p1480991
    Edit: Package name is now gstreamer-vaapi
    Last edited by neo1973 (2015-02-12 09:25:25)

  • Feed Has No Episodes & Validation Issues with RSS Feed

    Hello! I am beyond my wits end..having many issues getting this podcast submitted and never had such issues before. Any step-by-step help would be GREATLY appreciated!!
    Here is my feedburner: http://feeds.feedburner.com/High-achievingWomensBlogazine
    And here is the page where I have followed the instructions for the audio player and files: http://www.highachievingwomen.biz/podcasts/high-achieving-womens-blogazine-podca sts/
    Is there something I am missing for this feed to be picking up my audio files?
    (Note: since I am using feedburner, I did install the Plugins (Audio player & FeedSmith) that they recommend to use with their system as well)
    And here is what I get when I submit the RSS for validation:
    Congratulations!
    This is a valid RSS feed.
    Recommendations
    This feed is valid, but interoperability with the widest range of feed readers could be improved by implementing the following recommendations.
    line 14, column 1689: Misplaced Item (10 occurrences) [help]... nt &amp; Marketing" /></itunes:category><item>
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/High-achievingWomensBlogazine" /><feedburner:info uri="high-achievingwomensblogazine" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><media:copyright>© 2011 Dr. Laureen Wishom</media:copyright><media:thumbnail url="http://www.highachievingwomen.biz/wp-content/uploads/2010/01/LW.framed.medium.jpg" /><media:keywords>Branding,Identity,Tips,Coaching,Entrepreneurs,Laureen,Wishom,Marketplace,Positioning,Small,Business,Owners,Women,Entrepreneurs</media:keywords><media:category scheme="http://www.itunes.com/dtds/podcast-1.0.dtd">Business/Management &amp; Marketing</media:category><itunes:owner><itunes:email>[email protected]</itunes:email><itunes:name>Dr Laureen Wishom</itunes:name></itunes:owner><itunes:author>Dr Laureen Wishom</itunes:author><itunes:explicit>no</itunes:explicit><itunes:image href="http://www.highachievingwomen.biz/wp-content/uploads/2010/01/LW.framed.medium.jpg" /><itunes:keywords>Branding,Identity,Tips,Coaching,Entrepreneurs,Laureen,Wishom,Marketplace,Positioning,Small,Business,Owners,Women,Entrepreneurs</itunes:keywords><itunes:subtitle>Global Association of High-Achieving Women</itunes:subtitle><itunes:summary>This association is designed to gift the members with the tools and techniques to gain a competitive edge in the marketplace and assist the members in moving up, moving out or changing directions with ease, purpose and clarity.</itunes:summary><itunes:category text="Business"><itunes:category text="Management &amp; Marketing" /></itunes:category><item>
    Thank you!!

    Your feed has no media files referenced. Your web page has embedded audio players: these won't work in the feed. You need direct links to the media files, which should be mp3 or m4a, not rm, swf or wma. These links have to be contained in an 'enclosure' tag for each episode.
    This page eplains the basics of making a podcast and includes a sample basic feed soi you can see what I'm talking about:
    http://rfwilmut.net/pc
    I'm not suggesting you should write your own feed, but the page will tell you what to look for in a feed.
    You're using Wordpress: it's not really generating a podcast feed. You may need to add the PodPress plugin - I'm not sure whether you can get a podcast feed out of WordPress by itself - I'm afraid I can't advise on this.
    You can ignore the FeedValidator comment - it's only because you have the 'item' tag at the end of a line, and this doesn't matter.

  • Real trouble with RSS feeds and subscription in iWeb

    Hi
    I've set up a site - www.jinja.me but I'm having real problems trying to set up the RSS feed for the blog and the subscription service for the picture pages.
    When you click on the RSS or subscribe buttons this is the messages you get...
    *Blog RSS* - Not Found - The requested URL /Jinja/Blog/rss.xml was not found on this server.
    Apache/2.2.3 (Debian) PHP/5.2.0-8+etch11 proxy_html/2.5 Server at www.jinja.me Port 80
    Subscribe - Not Found -The requested URL /Jinja/Automotive_files/rss.xml was not found on this server.
    Apache/2.2.3 (Debian) PHP/5.2.0-8+etch11 proxy_html/2.5 Server at www.jinja.me Port 80
    I've tried every way to get these to work and all the suggestions on this site don't work..!!
    I purchased my site from telivo.com so they hold the domain name and the mobileme address is a mask apparently or the other way around, not sure!
    I really am stuck and would appreciate any help you guys can offer.
    Many thanks in advance......

    JinjaV6,
    I am unable to answer your question, but had a couple of questions myself about your website.
    First off, i really like it, and i am looking to build something similar to document my travels when i get iLife '09.
    Which template did you use?
    Have you done any html coding or was it all simple 'drag and drop' stuff?
    I presume you are using the blog feature provided by iWeb?
    Thanks

  • Popup menus not working on pages with RSS feed javascript

    My popup menus were working OK until I added an RSS feed to
    the page that
    uses javascript to parse the feed. Has anyone else
    experienced this? Or
    found a way to parse the RSS feed and still have the popup
    menus work?
    Thanks

    On Tue, 1 Aug 2006 17:42:28 -0500, "D Woods"
    <[email protected]>
    wrote:
    >My popup menus were working OK until I added an RSS feed
    to the page that
    >uses javascript to parse the feed. Has anyone else
    experienced this? Or
    >found a way to parse the RSS feed and still have the
    popup menus work?
    Perhaps, if you post a link to the page that doesn't work,
    someone can
    show you how to fix it.
    Gary

  • On old laptop, I got a toolbar type of crawl with RSS feeds. Now have 18.0.2 and do not get to see what is latest all the time. How do I get RSS crawl?

    Is the crawl bar available or not for RSS? This was a favorite feature of mine for keeping up on news without having to open a site or click on anything but the headline which interested me. If crawl is no longer available, is there a page to get similar things to old RSS feeds? Can it be done through FaceBook?

    See this for an explanation of '''URI'''. <br />
    http://en.wikipedia.org/wiki/URI

Maybe you are looking for

  • How can I keepalive for 2 different applications without using script?

    Have a CSS with 2 web server loadbalanced. Initially the keepalive was set to ssl but now the client would like to add another keepalive type http. How can i do this without writing script. Though there is quite number of example in the forum but I'm

  • Problem with my Adobe Premiere Elements on Imac

    I have the brand new IMac 27inch 2013  i5. When I'm working on Adobe Premiere ELements 9, the program is opening a message which is telling me that there's an error. Then the program closes. It ALWAYS happens when I'm trying to put a menu in my video

  • Document in Process but not found in the workflow

    Hi, we have a document entered in purchasing and still in process but it is not found in the workflow, then it can't be approved by users. help please, thanks.

  • Bold text in smartforms

    Hi guys, How to make bold text in a paragraph? for eg: Snow showers are likely to affect eastern parts of Scotland for much of the day. Heavy showers across southern England will move northwards into South Wales during the afternoon. These will be ge

  • How Display Standard Help for a Message?

    I have a program that executes a Call Transaction.  When it returns an error message, I write the message to a report.  I would like to define a hotspot on the report so that the user can click on the message and get the standard long text for the me