Iframe in Rss Reader App

I started an Rss Reader App through App Studio and now I am developing it through Visual Studio. The problem is that the rss parser is stripping the iframe tags. I tested the rss on an other parser and everything is showing just fine. Do anyone know how
I can exclude iframes from getting stripped by the app parser? Thank you very much
*EDIT*
I found out that the file HTML2Xaml.cs is might be responsible for allowing iframes but I don't know how to edit it in order to allow the iframes

The application auto-saves your input when you close the document.  If you left the document, as you state, the notes/comments should have been saved and should have been visible the next time you opened the document with the Mobile Reader (note that if you are opening the document with another app such as Apple's built in PDF Viewer, things like notes/comments may not be visible).  Also note that if you are doing an Open In... from another app (like Dropbox), the version of the document in Dropbox does not update; only the version of the document in the Mobile Reader is updated.
Would it be possible to send a video of the problem you are encountering to [email protected] so that we can try to help?

Similar Messages

  • LArge, simple RSS reader app or screensaver.

    Hello there, I have a mac mini running 10.4 that powers a 42" plasma that was donated to our school.
    I have an info/news feed that is picked up by the RSS screensaver for display to the students.
    This isn't bad but the text is a bit small and only shows one story at a time.
    I'm after a RSS reader that is very plain and uncluttered but also colourful and eye catching that will cycle through topics in an RSS feed maybe 2 or more at a time. It would be great to have the time and a picture on screen too...
    I currently use the RSS screen saver that comes with 10.4 but the text is a bit too small..
    I wonder if there is anything else out there that might work well for a standalone info screen (ie no mouse clicking etc involved).
    cheers
    S

    OK installed it on my work machine but t be honest it's a bit complicated...
    I just want an RSS feed ike the default one but with bigger text, less 'whizzing around' of the stories and maybe a picture background...
    Is there no ready made solution out there as I don't want to spend time learning how to use a programming system (albeit a simple one) to just get one piece of software...
    S

  • Implement an initial state in iframe for rss reader

    Hi,
    I am using the latest spry framework 1.6.1 and have implemented the rssreader in a web page. I have not changed any of the code on how this works but just modified the stylesheet to change its appearance. When the page is first loaded there is no content displaying within the iframe until one of the links from the sub-menu is selected as it should work. I am wondering however if there is a simple way to have an initial screen loaded in the iframe before anything is selected?
    Any help would be much appreciated.

    Just change the src of the iframe?
    <div id="RSSItemContent">
          <iframe id="RSSItemContentIFrame" src=""></iframe>
        </div>

  • Looking for best RSS reader

    Need one with swipe left/right to navigate to the next item and also has adjustable text as well as has a full screen reading mode. It would also be nice to find one which also has share to Google+.  Byline has the the 1st feature I want/love by doesnt allow you to change the font size to smaller.
    Do any rss reader apps exist with all these?
    Basically my favorite Android app gReader Pro had all of these features. But now I have the iPhone 4 and need replacement.

    To be honest, you are better off using a computer and this software:
    http://calibre-ebook.com/
    It will convert ebook formats...if you buy a reader, you are committed to that environment.  WIth the above and a computer, you can install the PC version of your favorite ereader and use the software to convert other formats to it. 
    If you find my post useful or informative, please click the icon below with the plus sign and star to give kudos. Thank you!

  • Set a default RSS reader when clicking RSS button in Safari?

    When I'm in Safari and I click on the RSS button in a web page, it loads up my podcast app (Downcast) which does me no good.  I use Mr. Reader for my RSS reader (it's a Google Reader client) -- how do I get Safari to load that up instead?  And then presumably it would then create a new subscription feed in Mr. Reader for that RSS feed that I clicked on in Safari.

    I use Reeder. I thought I had this same problem with the last version of Safari but somehow I was able to turn it off (I want to see it first and choose to add it myself to my RSS reader).
    But since Mountain Lion, I haven't been able to turn it off.
    Gary
    http://GarySaid.com/

  • Can Someone Please Help Me Create a Blog Reader App For My Blog?

    Hi ! I am trying to create a blog reader app by using RSS feed for my blog. I found this tutorial on MSDN here Create a Blog Reader using C# and XAML
    But the problem is, it says some parts will not work with VS 2013. I even tried to follow each step of the tutorial but get stuck with some "navigation parameter" type-casted to a class. I couldn't understand what do I replace that with as it was
    never declared earlier somewhere. Can someone help me with the code? Please, I will be very thankful.
    I am using VS 2013 Community update 4 and Windows 8.1

    Here is the code and the error i am facing. I tried my best to do other changes like styles for buttons, textblocks etc that are new in 8.1
    protected override string DetermineVisualState(ApplicationViewState viewState)
    // Update the back button's enabled state when the view state changes
    var logicalPageBack = this.UsingLogicalPageNavigation(viewState) && this.itemListView.SelectedItem != null;
    var physicalPageBack = this.Frame != null && this.Frame.CanGoBack;
    this.DefaultViewModel["CanGoBack"] = logicalPageBack || physicalPageBack;
    // Determine visual states for landscape layouts based not on the view state, but
    // on the width of the window. This page has one layout that is appropriate for
    // 1366 virtual pixels or wider, and another for narrower displays or when a snapped
    // application reduces the horizontal space available to less than 1366.
    if (viewState == ApplicationViewState.Filled ||
    viewState == ApplicationViewState.FullScreenLandscape)
    var windowWidth = Window.Current.Bounds.Width;
    if (windowWidth >= 1366) return "FullScreenLandscapeOrWide";
    return "FilledOrNarrow";
    // When in portrait or snapped start with the default visual state name, then add a
    // suffix when viewing details instead of the list
    var defaultStateName = DetermineVisualState(viewState);
    return logicalPageBack ? defaultStateName + "_Detail" : defaultStateName;
    errors:
    Error 1
    An object of the type "System.Object" cannot be applied to a property that expects the type "Windows.UI.Xaml.Data.IValueConverter".
    I am using it here
    <TextBlock Text="{Binding PubDate, Converter={StaticResource dateConverter}}"
    //DateConverter.csusing System;
    using Windows.Globalization.DateTimeFormatting;
    using Windows.UI.Xaml.Data;
    namespace WindowsBlogReader
    public class DateConverter : Windows.UI.Xaml.Data.IValueConverter
    public object Convert(object value, Type targetType, object parameter, string culture)
    if (value == null)
    throw new ArgumentNullException("value", "Value cannot be null.");
    if (!typeof(DateTime).Equals(value.GetType()))
    throw new ArgumentException("Value must be of type DateTime.", "value");
    DateTime dt = (DateTime)value;
    if (parameter == null)
    // Date "7/27/2011 9:30:59 AM" returns "7/27/2011"
    return DateTimeFormatter.ShortDate.Format(dt);
    else if ((string)parameter == "day")
    // Date "7/27/2011 9:30:59 AM" returns "27"
    DateTimeFormatter dateFormatter = new DateTimeFormatter("{day.integer(2)}");
    return dateFormatter.Format(dt);
    else if ((string)parameter == "month")
    // Date "7/27/2011 9:30:59 AM" returns "JUL"
    DateTimeFormatter dateFormatter = new DateTimeFormatter("{month.abbreviated(3)}");
    return dateFormatter.Format(dt).ToUpper();
    else if ((string)parameter == "year")
    // Date "7/27/2011 9:30:59 AM" returns "2011"
    DateTimeFormatter dateFormatter = new DateTimeFormatter("{year.full}");
    return dateFormatter.Format(dt);
    else
    // Requested format is unknown. Return in the original format.
    return dt.ToString();
    public object ConvertBack(object value, Type targetType, object parameter, string culture)
    string strValue = value as string;
    DateTime resultDateTime;
    if (DateTime.TryParse(strValue, out resultDateTime))
    return resultDateTime;
    return Windows.UI.Xaml.DependencyProperty.UnsetValue;
    Error 2
    The name "DateConverter" does not exist in the namespace "using:WindowsBlogReader".
    (DateConverter.cs is a class, I really don't understand why this error comes, i have decalared a local resource in app.xaml for it)
    <Application.Resources>
    <ResourceDictionary>
    <local:DateConverter x:Key="dateConverter"></local:DateConverter>
    Error 3
    'WindowsBlogReader.SplitPage.DetermineVisualState(Windows.UI.ViewManagement.ApplicationViewState)' is a new virtual member in sealed class 'WindowsBlogReader.SplitPage'
    Error 4
    'WindowsBlogReader.SplitPage.DetermineVisualState(Windows.UI.ViewManagement.ApplicationViewState)': no suitable method found to override
    Here is the visual state code for my 1st Page : ItemsPage.xaml
    <VisualStateManager.VisualStateGroups>
    <!-- Visual states reflect the application's view state -->
    <VisualStateGroup x:Name="ApplicationViewStates">
    <VisualState x:Name="FullScreenLandscape"/>
    <VisualState x:Name="Filled"/>
    <!-- The entire page respects the narrower 100-pixel margin convention for portrait -->
    <VisualState x:Name="FullScreenPortrait">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton"
    Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0"
    Value="{StaticResource NavigationBackButtonSmallStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemGridView"
    Storyboard.TargetProperty="Padding">
    <DiscreteObjectKeyFrame KeyTime="0" Value="96,136,86,56"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <!--
    The back button and title have different styles when snapped,
    and the list representation is substituted
    for the grid displayed in all other view states
    -->
    <VisualState x:Name="Snapped">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton"
    Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0"
    Value="{StaticResource NavigationBackButtonSmallStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="pageTitle"
    Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0"
    Value="{StaticResource HeaderTextBlockStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemListView"
    Storyboard.TargetProperty="Visibility">
    <DiscreteObjectKeyFrame KeyTime="0" Value="Visible"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemGridView"
    Storyboard.TargetProperty="Visibility">
    <DiscreteObjectKeyFrame KeyTime="0" Value="Collapsed"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    </VisualStateGroup>
    </VisualStateManager.VisualStateGroups>
    Visual State code for SplitPage.xaml (2nd Page)
    <VisualStateManager.VisualStateGroups>
    <!-- Visual states reflect the application's view state -->
    <VisualStateGroup x:Name="ApplicationViewStates">
    <VisualState x:Name="FullScreenLandscapeOrWide"/>
    <!-- Filled uses a simpler list format in a narrower column -->
    <VisualState x:Name="FilledOrNarrow">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="primaryColumn" Storyboard.TargetProperty="Width">
    <DiscreteObjectKeyFrame KeyTime="0" Value="420"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemListView" Storyboard.TargetProperty="ItemTemplate">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource NarrowListItemTemplate}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="Padding">
    <DiscreteObjectKeyFrame KeyTime="0" Value="60,0,66,0"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <!--
    The page respects the narrower 100-pixel margin convention for portrait, and the page
    initially hides details to show only the list of items
    -->
    <VisualState x:Name="FullScreenPortrait">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource NavigationBackButtonNormalStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="Visibility">
    <DiscreteObjectKeyFrame KeyTime="0" Value="Collapsed"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemListView" Storyboard.TargetProperty="Padding">
    <DiscreteObjectKeyFrame KeyTime="0" Value="100,0,90,60"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <!--
    When an item is selected in portrait the details display requires more extensive changes:
    * Hide the master list and the column is was in
    * Move item details down a row to make room for the title
    * Move the title directly above the details
    * Adjust margins and padding for details
    -->
    <VisualState x:Name="FullScreenPortrait_Detail">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource NavigationBackButtonNormalStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="primaryColumn" Storyboard.TargetProperty="Width">
    <DiscreteObjectKeyFrame KeyTime="0" Value="0"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemListView" Storyboard.TargetProperty="Visibility">
    <DiscreteObjectKeyFrame KeyTime="0" Value="Collapsed"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="(Grid.Row)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="1"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="(Grid.RowSpan)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="1"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="titlePanel" Storyboard.TargetProperty="(Grid.Column)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="1"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetailGrid" Storyboard.TargetProperty="Margin">
    <DiscreteObjectKeyFrame KeyTime="0" Value="0,0,0,60"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="Padding">
    <DiscreteObjectKeyFrame KeyTime="0" Value="100,0,90,0"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <!--
    The back button and title have different styles when snapped, and the page
    initially hides details to show only the list of items
    -->
    <VisualState x:Name="Snapped">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource NavigationBackButtonSmallStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="pageTitle" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource HeaderTextBlockStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="primaryColumn" Storyboard.TargetProperty="Width">
    <DiscreteObjectKeyFrame KeyTime="0" Value="320"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="Visibility">
    <DiscreteObjectKeyFrame KeyTime="0" Value="Collapsed"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemListView" Storyboard.TargetProperty="ItemTemplate">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource NarrowListItemTemplate}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemListView" Storyboard.TargetProperty="Padding">
    <DiscreteObjectKeyFrame KeyTime="0" Value="20,0,0,0"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <!--
    When snapped and an item is selected the details display requires more extensive changes:
    * Hide the master list and the column is was in
    * Move item details down a row to make room for the title
    * Move the title directly above the details
    * Adjust margins and padding for details
    * Use a different font for title and subtitle
    * Adjust margins below subtitle
    -->
    <VisualState x:Name="Snapped_Detail">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource NavigationBackButtonSmallStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="pageTitle" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource HeaderTextBlockStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="primaryColumn" Storyboard.TargetProperty="Width">
    <DiscreteObjectKeyFrame KeyTime="0" Value="0"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemListView" Storyboard.TargetProperty="Visibility">
    <DiscreteObjectKeyFrame KeyTime="0" Value="Collapsed"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="(Grid.Row)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="1"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="(Grid.RowSpan)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="1"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="titlePanel" Storyboard.TargetProperty="(Grid.Column)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="1"/>
    </ObjectAnimationUsingKeyFrames>
    <!--<ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetailTitlePanel" Storyboard.TargetProperty="(Grid.Row)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="0"/>
    </ObjectAnimationUsingKeyFrames>-->
    <!--<ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetailTitlePanel" Storyboard.TargetProperty="(Grid.Column)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="0"/>
    </ObjectAnimationUsingKeyFrames>-->
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="Padding">
    <DiscreteObjectKeyFrame KeyTime="0" Value="20,0,20,0"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetailGrid" Storyboard.TargetProperty="Margin">
    <DiscreteObjectKeyFrame KeyTime="0" Value="0,0,0,60"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemTitle" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource TitleTextBlockStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemTitle" Storyboard.TargetProperty="Margin">
    <DiscreteObjectKeyFrame KeyTime="0" Value="0"/>
    </ObjectAnimationUsingKeyFrames>
    <!--<ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemSubtitle" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource CaptionTextStyle}"/>
    </ObjectAnimationUsingKeyFrames>-->
    </Storyboard>
    </VisualState>
    </VisualStateGroup>
    </VisualStateManager.VisualStateGroups>
    and finally , a Basic Page(DetailPage.xaml)
    <VisualStateManager.VisualStateGroups>
    <!-- Visual states reflect the application's view state -->
    <VisualStateGroup x:Name="ApplicationViewStates">
    <VisualState x:Name="FullScreenLandscape"/>
    <VisualState x:Name="Filled"/>
    <!-- The entire page respects the narrower 100-pixel margin convention for portrait -->
    <VisualState x:Name="FullScreenPortrait">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton"
    Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0"
    Value="{StaticResource NavigationBackButtonNormalStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <!-- The back button and title have different styles when snapped -->
    <VisualState x:Name="Snapped">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton"
    Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0"
    Value="{StaticResource NavigationBackButtonSmallStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="pageTitle"
    Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0"
    Value="{StaticResource NavigationBackButtonSmallStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="contentViewBorder"
    Storyboard.TargetProperty="Margin">
    <DiscreteObjectKeyFrame KeyTime="0" Value="20,5,20,20"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    </VisualStateGroup>
    </VisualStateManager.VisualStateGroups>

  • Set Default RSS Reader in Mountain Lion???

    So now that Mail & Safari dont have default RSS readers support, how does one change what was previously set?  Somehow the program "Socialite" has been set as my default RSS Feed reader.  I do NOT want to use this program for RSS feeds but cannot seem to find a way to change the default association.

    Use whatever RSS reader you prefer from the very many that currently exist. Find them at MacUpdate or CNET Downloads . You can also find them on the Mac App Store. A good one is NetNewsWire 3.3.2. It's also free.

  • HT5275 Why did this update eliminate Safari's RSS reader function? Grrrrr.

    So, I have a number of RSS sources in a folder titled "News" in my bookmarks bar. I select it and am able to either go to individual RSS source or "View All RSS Sources" (which I use all the time) or open all in tabs (this one's not a good idea!). After updating, the "View All RSS Sources" is gone as Safari no longer has an RSS reader function. Too bad (and I really mean that!) and seemingly unaccounted for if I call APple for assistance... just "No Safari RSS reader in the update. Oh, and there's no way to go back!"
    I use  "View All RSS Sources" twice daily (at least) because it is adjustable... my list is sorted by Unread, and it highlights those. Very convenient! An excellent function... no in the dumpster! Grrrrrrrr!
    Anyway, now I cannot do this function on my MBP w/Mtn Lion (update to Safari included in the update to Lion) or on my Mac Pro w/Lion (I updated Safari automatically, then found the "improvement"). So now my mini is not going to be updated until I am able to find an outside app that'll give me this function back. And no more buying upgraded minis, either. Grrrr.
    Anyway, anybody know why the function was removed in the update?
    ADDED POST POSTING: it appears I've lost spellcheck while using an outdated version of Safari  

    Hi,
    Another thing you can try is this:
    - Quit Safari
    - Open up a Terminal window (via Applications -> Utilities -> Terminal.app)
    - Type <pre>dscacheutil -flushcache</pre> and then press the Return key
    - Restart Safari
    What that does is flush the local DNS cache on your machine. DNS is how computers convert human-readable names (i.e. www.apple.com) into IP addresses (17.112.152.32) that computer networks use to resolve machine locations.
    No guarantees this will work, but it's worth a shot.

  • Where is RSS reader in mountain lion

    After updating to Mountain Lion, am unable to read google news. Message states no RSS reader.

    User/Library>Music>Audio Music Apps>Sampler instruments.
    Give it a try, I'm not clear about what you're trying to achieve.  I personally don't have hardly more than a few "samples" that I have edited in EXS24.  So then I just import them from those projects when I want to use them in new projects.
    There are much more knowledgable peeps than me, and I imagine your problem can be solved!

  • Assign new default RSS reader in Mountain Lion

    How do I change the default RSS reader under Mountain Lion and Safari 6?
    Removing the configuration preference from Safari 6 was a BAD IDEA!
    Anyway, any help will be deeply appreciated.  Thanks.

    Use whatever RSS reader you prefer from the very many that currently exist. Find them at MacUpdate or CNET Downloads . You can also find them on the Mac App Store. A good one is NetNewsWire 3.3.2. It's also free.

  • E71 RSS Reader

    Gentlemen,
    is any one aware of a good RSS Reader that works fine on the NOkia E71. I used to have a windows mobile device and it had this great application called "VIIGO". Unfortunetaly, this application is only available on WM and Blackberry.
    Thank You
    Solved!
    Go to Solution.

    The opera mini browser has an RSS feed reader....
    http://www.operamini.com/
    not sure about a standalone app - but i'll look around as well.

  • Default RSS reader option

    What does the preference in both Safari > Prefs > RSS > Default RSS reader and Mail > Prefs > RSS > Default RSS reader do?
    Until now I've been doing all my RSS in Safari, which is OK but not stellar.
    Now that Mail supports RSS in 10.5, I'm experimenting with it there. But as far as I can tell, RSS feeds that are subscribed to in either app seem to get updated in either app. So what does the "default RSS feed" do?

    Hi
    When you open (expand) an RSS feed in either Safari or Mail, either Safari will go to the actual page (if set as the default), or a specific RSS Reader will open.

  • Nokia 5800 RSS Reader broken "unknown error"

    My Nokia 5800 RSS Reader spontaneously died. Getting "unknown error".
    Anyone know how to fix this? Will any new firmware fix it? Any free apps?
    The RSS Reader on the phone isn't bad imo and i had over 10 feeds in there. I'm having to use Opera Mini rss feed is usable but that browser is so fragile!
    (I have v2.1 fw)
    Much discussion about this here but no solution: http://www.allaboutsymbian.com/forum/showthread.ph​p?p=425392
    Appreciate my posts? - gimme some kudos and click teh star!

    I have had the same problem on my nokia 5800, everything worked great for about 1 month since I bought the phone and then out of nowhere the feeds got corrupted when I was doing a refresh all I think. It is 100% a software database or broken file issue.  I tried searching for bookmark database in system folders and files and others using y-browser to see if I can erase them manually but wasn't able to find any file that would indicate it is a bookmark database or whatever. Maybe someone who knows s60 ins and outs has an idea where do these bookmarks live.
    On the other hand I remembered I had done a full back up of my phone beforehand using PC suite (Ovi Suite same thing in a different package) . So I just restored the bookmarks to my phone and vioala. The feeds work again, because the whole bookmark database got overwritten. No hard reset required.
    If you already have the error and no back up then  it is a problem. You would have to trick the nokia restore software to do the restore with a blank file. You will have to dig around and find out how to do it. Perhaps do a back up for the broken bookmarkrs, find the file, then either replace with a blank or edit it such that it looks like blank. Alternatively, have someone who has a uncorrupted bookmark back up, send you the file and you can restore that one.
    Hope this helps!Good Luck!

  • Multi tab rss reader

    hey everyone i have started working on a multitab flash builder mobile app, since i have very little experience with action script and such i used the tutorial here: http://mobile.dzone.com/articles/building-mobile-rss-reader?mz=8019-adobe
    but i can not repeat the process for the other tabs
    does anyone have an where that they can point me

    This is a shame that Apple doesnt (somehow) make this one of the cross-platform features.
    I mean come on, how many of us mac users actually have ALL our computer-using relatives on a mac? In a perfect world, all of us, but reality is, I'm the only one out of about 11 people on my and my wife's side of the family that we share pics of the kids with. Everyone else uses Winblows.
    I was pumped when I heard about photocasting. Alas, now that I've tried to make this work smoothly for the novice windows users who want to see pictures of our kids, I realize there is *zero chance* of me being able to use this. There is no way I can see myself sending my 63 year old mother an RSS feed link and having her figure out what to do with it (when she can barely figure out how to look at the pics I send in email he he). If she has to go install an RSS reader, forget it.
    Anyway, great mac only feature, but this would be a huge feather in Apple's cap if they could figure out how to serve this up to Windows end users just as effortlessly.
    eMac, PB17"   Mac OS X (10.4.4)  
    eMac   Mac OS X (10.2.x)  

  • What are you using as RSS Reader on iPhone?

    I am an RSS junkie, and this is how I quickly get my news every day. If you have not yet discovered the power of RSS, it lets you quickly browse headlines from dozens of web sites in one-stop shopping.
    What have you found to be the best way to manage and read RSS feeds on your iPhone?
    I had been using a Mac-based app called NewsFire on my MacBook, but they told me there is 0% chance of porting this to be an iPhone app.
    So I am shopping for a new RSS reader to manage all of the feeds I subscribe to.
    What RSS reader do you like on the iPhone? Are you just using Google Reader or Safari, or have you found something cooler? What do you like about the reader you chose?
    Thanks!
    Brian

    I haven't used RSS on iPhone, but I understand if you click an RSS feed in iPhone Safari it'll use
    reader.mac.com, though apparently it doesn't have many features. Maybe more sites or widgets will come out sometime?
    You can ask Apple for iPhone changes via this link:
    http://www.apple.com/feedback/iphone.html Though if you're requesting hardware changes for iPhone v2 you may want to wait a week (or a month?)...they're probably going to be inundated right now by requests for software changes to the current iPhone.

Maybe you are looking for

  • Schedule lines not generated after MRP run

    Dear All, I am trying to create Schedule lines through MRP run , but instead system creates MRP element PRqRel  and its PurRqs when i check in MD04 ,  the following are the prerequisite i done before MRP run , but still Schedule lines are not generat

  • Error attaching Adventureworks 2008 db to SQL Server 2008 [not R2]

    Hi ppl, I have SQL Server 2008[NOT R2] installed in my laptop [Windows Vista Home Premium, 64 bit]. There are 2 issues: 1. Downloaded the AdventureWorks 2008_SR4 from the link :  http://msftdbprodsamples.codeplex.com/releases/view/37109 . but wasn't

  • PhotoShop CS5.1 not responding

    I downloaded the trial version of CS5.1, which is 1.1gb data. when I tied to activate it, got this pop window "You can't open the application Adobe Photoshop CS5.1 because it may be damaged or incomplete", after deleting this file I downloaded twice

  • Vendor Master record change using CREMAS & ADRMAS

    Hi , I have one problem with CREMAS & ADRMAS idocs, i am using one custom program(it is using IDOC) to change/ create the vendor master record ,While i try to change some filed of one particular vendor using the idoc,it delete all other fileds relate

  • Built-in camera light always on

    is someone watching me, or what?