Welcome to TalkGraphics.com
Results 1 to 4 of 4
  1. #1
    Join Date
    May 2009
    Location
    Boston
    Posts
    20

    Lightbulb Setting Up RSS Feeds in Xara Designr

    RSS Feeds
    Does anyone know how to do this?

  2. #2
    Join Date
    Mar 2009
    Posts
    4,504

    Default Re: Setting Up RSS Feeds in Xara Designr

    Google the following and you may find your answer: rss feed this site:www.talkgraphics.com/

  3. #3
    Join Date
    Aug 2000
    Location
    Placitas, New Mexico, USA
    Posts
    41,532

    Default Re: Setting Up RSS Feeds in Xara Designr

    There is a WebRSS widget in the Design Gallery > Page Elements & Widgets > Other Widgets folder that might be what you are looking for.

    I have not used this widget but if it is similar to other widgets there is one important step that is not clear. When the widget generates some code, you need to highlight the code and Copy it to the clipboard (Ctrl c), then press Insert.
    Attached Thumbnails Attached Thumbnails Click image for larger version. 

Name:	WebRSS.png 
Views:	170 
Size:	108.8 KB 
ID:	100431  

  4. #4
    Join Date
    Apr 2012
    Location
    SW England
    Posts
    17,929

    Default Re: Setting Up RSS Feeds in Xara Designr

    I spent a relatively short time with Google RSS API: http://www.google.com/uds/solutions/dynamicfeed/, and was able to handcraft a very useful presentation.

    One example for a box 455 x 410 px is:

    Box body placeholder code:
    Code:
    <div id="content">
        <span style="color:#676767;font-size:11px;margin:10px;padding:4px;">Loading...</span>
      </div>
    Box head placeholder code:
    Code:
        <script src="http://www.google.com/jsapi" type="text/javascript"></script>
    
    
        <!-- Dynamic Feed Control and Stylesheet -->
        <script src="http://www.google.com/uds/solutions/dynamicfeed/gfdynamicfeedcontrol.js"
                type="text/javascript"></script>
        <style type="text/css">
          @import url("http://www.google.com/uds/solutions/dynamicfeed/gfdynamicfeedcontrol.css");
        </style>
    
    
        <script type="text/javascript">
        /*
        *  How to use the Dynamic Feed Control, which has pretty UI already made for you!
        *  Don't forget to check out the options:
        *  http://www.google.com/uds/solutions/dynamicfeed/reference.html
        */
    
    
        google.load('feeds', '1');
    
    
        function OnLoad() {
          var feeds = [
            {
              title: 'Recent Posts',
              url: 'http://stourpaine.info/matters/feed/'
            },
            {
              title: 'Recent Comments',
              url: 'http://stourpaine.info/matters/comments/feed/'
            }
          ];
    
    
          var options = {
            stacked : true,
            horizontal : false,
            title : "Stourpaine Matters",
            numResults : 6
          };
    
    
          new GFdynamicFeedControl(feeds, 'content', options);
          document.getElementById('content').style.width = "400px";
        }
    
    
        google.setOnLoadCallback(OnLoad);
        </script>
    Get this working first before changing anything. Then read the API detail.
    Finally, change the "stourpaine" site () detail to your RSS Feed.

    I find it allows me to link a Wordpress site that I have open to contributors and the main site that I publish to have a dynamic presentation through the many RSS Feeds in the website: http://www.stourpaine.info/

    Acorn

 

 

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •