Automatically Show Blog Content in Spry Panel?

Hi Everyone -
I currently have a Wordpress blog at http://www.roadkillcreative.com/blog and I'd like to get the latest blog entry (or a portion of) to show up in the "blog" spry panel at http://www.roadkillcreative.com/sports/
Currently I'm updating it manually.  Does anyone know a way to do it automatically?  Maybe a widget?
Thanks for the help!

Hi
The normal and possibly easiest way is to incorporate it as an rss feed.
PZ

Similar Messages

  • How to automatically open and close collapsable spry panels?

    I designed a collapsable spry panel in DW to open and close automatically, with a 10 sec delay, unless person clicks on tab to close immediately.
    The spry panel opens automatically, but will only close if i click the tab.
    Is there a way for the collapsable spry panels to close automatically?
    [Moved to Spry forum by moderator]

    Arnout,
    I feel certain the answer I need is in the reply you posted here, but I need a little more help to know exactly what to do.  I am using a collapsible panel to show and hide a series of onload panoramic photos near the top of my page.  What I want is for the collapsible panel to be open on some pages and closed on others and I want the animation of the panel closing to be seen too.  I'm thinking this should be achievable with some sort of onload trigger or something.  Currently I've gotten close to what I want by referencing two different .js files (one for the "open" panel state and another for the "closed" panel state), but this doesn't show the graceful animation of the panel closing.  Any ideas on how to achieve what I want?  Here is the url of the test site I'm developing:  http://www.gregdanpartners.com/lrre2/index.html
    Thanks in advance.
    Dan

  • Spry Tabbed panels + Progressive Enhancement and Dynamic Loading of Content With Spry

    Is there any way to combine tabbed panels together with "Progressive Enhancement and Dynamic Loading of Content With Spry"?
    Visit: http://labs.adobe.com/technologies/spry/articles/best_practices/progressive_enhancement.ht ml#updatecontent
    And click on the "Using Spry.Utils.updateContent()"
    The 3rd example shows how to use a fade transition whenever the content changes.
    I already have tabbed panels. My menu contains buttons (on tabs) and my Content div contains the panels.
    Tabs code;
    <ul class="TabbedPanelsTabGroup">
              <li class="TabbedPanelsTab">
                   <table class="Button"  >
                        <tr>
                        <td style="padding-right:0px" title ="Home">
                        <a href="javascript:TabbedPanels1.showPanel(1);" title="Home" style="background-image:url(/Buttons/Home.png);width:172px;height:75px;display:block;"><br/></a>
                        </td>
                        </tr>
                   </table>
              </li>
    etc
    etc
    etc
    and the panel code:
    <div class="TabbedPanelsContent" id="Home">
         CONTENT
    </div>
    I hoped i can use the example code from the link into my tabbed panels.
    I thought this code:
    onclick="FadeAndUpdateContent('event', 'data/AquoThonFrag.html'); return false;"
    could be added to the tab code like this:
    <a href="javascript:TabbedPanels1.showPanel(1);" onclick="FadeAndUpdateContent('event', 'data/AquoThonFrag.html'); return false;" title="Home" style="background-image:url(/Buttons/Home.png);width:172px;height:75px;display:block;"><br/></a>
    But the content doesnt fade...
    I know i need to change the header etc.
    The following is from the link:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xmlns:spry="http://ns.adobe.com/spry">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Aquo Events</title>
    <script src="../../../includes/SpryEffects.js" type="text/javascript"></script>
    <script src="../../../includes/SpryData.js" type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    function FadeAndUpdateContent(ele, url)
    try {
         Spry.Effect.DoFade(ele,{ duration: 500, from: 100, to: 0, finish: function() {
              Spry.Utils.updateContent(ele, url, function() {
                        Spry.Effect.DoFade(ele,{ duration: 500, from: 0, to: 100 });
    }catch(e){ alert(e); }
    -->
    </script>
    <style type="text/css">
    /* IE HACK to prevent bad rendering when fading. */
    #event { background-color: white; }
    </style>
    </head>
    So i changed my header etc, put the SpryEffects.js and SpryData.js into position and nothing changed...
    Is there a way to keep my tabbed panel (or change as less as possible) and let
    A. The fade work
    B. The loading work.
    The problem now is that it loads all pages instead of only the home. Therefore i wanted this Progressive Enhancement.
    And the fading part is just because its nice...

    It doesnt show in the post but off course i changed this link;
    "data/AquoThonFrag.html"
    into;
    "javascript:TabbedPanels1.showPanel(1);"
    I must say i dont know if this even works...

  • Spry Accordion menu - How do you make tabs without content and make panel height fit the content?

    I have an Accordion Menu on my site and I would like to put a tab at the top that links to my homepage when clicked, instead of sliding open to show a content panel. I don't have any extra info to put in the content panel, so it would look kind of redundant to have it there.
    Also, each panel has a different amount of content, but they all default to the same height to fit the largest content. I want them to fit to the content of each panel. The only thing I've read said to set the height of the content panel to 100% in the CSS, but it didn't change anything.
    Thanks!
    Andrea
    http://www.andreamutsch.com

    You make it look so simple but it doesn't seem to be working for me...
    My first thought with getting rid of the tab content was to simply delete it, but when I do that I get a warning that 'The structure of the accordian appears to be damaged'. Then when I preview none of the tabs will open.
    This is what my accordian structure looks like with the tab content code deleted...
    <div id="Accordion1" tabindex="0">
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">home</div>
            </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">graphic design</div>
            <div class="AccordionPanelContent">
              <p align="center">identity </p>
              <p align="center">print </p>
              <p align="center">packaging</p>
              <p align="center">web </p>
            </div>
          </div>
    <div class="AccordionPanel">
            <div class="AccordionPanelTab">photography</div>
            <div class="AccordionPanelContent">
              <p>traditional</p>
              <p>digital</p>
              <p>retouch</p>
            </div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">contact</div>
            <div class="AccordionPanelContent">
              <p>email me</p>
              <p>design quote</p>
              <p>purchase photography</p>
            </div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">resume</div>
            <div class="AccordionPanelContent">download resume (.pdf)</div>
          </div>
          <div class="AccordionPanel">
            <div class="AccordionPanelTab">design blog</div>
            <div class="AccordionPanelContent">2009</div>
          </div>
    Also, getting rid of the height in the CSS had no effect (I did this before I did the above)
    Below is my current CSS for the Panel Content
    .AccordionPanelContent {
        overflow: auto;
        margin: 0px;
        padding: 0px;
        font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
        font-size: large;
        background-color: #633408;
        font-weight: normal;
        word-spacing: normal;
        text-align: center;
    Also there is a note in the CSS that says this...
    * Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
    * Content container.
    I'm not sure how accurate that is since I don't have a height in there and it worked (although not how I wanted) but I just thought I would throw it in.

  • Content Query Webpart show blog post with no of comments

    Hi to All,
    I want to show blog posts using content query webpart along with no of comments to that post
    but comment column in the Posts list is lookup column so how to show no of comments using content query webpart.
    Please help me.
    Thanks,
    Rohit Warghade...

    I am not sure why, but I am getting
    The site or list column "# Comments" does not exist or is not valid.
    What could I be doing wrong?
    Thanks!

  • Program panel automatically shows up in front when playing

    Hello, when I'm in my sequence panel in my Premiere Pro CC 2014 and I click on play, the program panel automatically shows up on top in front of all other panels in this frame. I want to show up the audio track mixer panel in front of all other panels in this frame, but when playing it always jumps back to the program panel. How can I disable this? Thanks.

    Please see this thread: Program monitor during playback in always in focus; preventing effects panel or mixer to be seen

  • Spry accordion widget - SSI (server side include) as content in the panel

    After having inserted the following command <!--# include file = "content2.asp" -> in the accordion Panel Content I get an error in Dreamweaver - every time I open the file. See the error in the attached picture.
    Once all files are uploaded to the server it works apparently without problems or script errors.
    Is there anyone who can help me to use SSI "server side include" as content in accordion panels?

    Thanks for your reply.
    The fault lay in the SSI file. This file contained these tag:
    </ html>
    And of course the tag </ html> generate an error if the tag is inserted in the content of the accordion panel via ssi file.

  • How can I get Thunderbird to SHOW REMOTE CONTENT automatically?

    I don't want to click on it for every individual message, and I can't find any such preference setting.

    Hello RyanMooncat,
    There are a few steps you must follow to allow Thunderbird to always show remote content of an email.
    1) Navigate to and click on the menu button on the top right of your screen
    2) Within the menu, select "Options" and then make your way to "Advanced" on the far right
    3) On the general tab, click on the "Config editor"
    4) In the window that appears, enter this into the search field (without quotes)
    "mailnews.message_display.disable_remote_­image"
    5) Double click the result that appears in the box below. The value should change to "False"
    Close the window and you're done!
    Hope this helped

  • Shared mailbox and personal mailbox showing identical content in Outlook

    I have one user on Outlook 2010 who has Full Access permissions to a shared mailbox. In OWA, everything looks fine, but in Outlook, the shared mailbox shows the contents of her personal mailbox instead of the content of the shared mailbox.
    If she views the shared mailbox's Inbox, it shows her the contents of her own Inbox instead of the shared mailbox. If she attempts to view the shared mailbox's Calendar, it shows her nothing at all. There are no error messages.
    I configured a separate Mail profile (via Control Panel) for the shared mailbox, and that works fine also.
    I deleted her Mail profile and all cached Outlook data, then created a new profile, and let Outlook recache all the data. Same problem.
    Any ideas what is going on or how to fix it?
    Blog /
    Facebook / Twitter

    Finally some moderately helpful info:
    The end user logs into a computer on an untrusted, foreign AD domain (domain2.com) using an account from that domain. She then logs into her Exchange mailbox in Outlook using her domain.com account.
    Every domain2.com computer she logs into gives her the same random mailbox mirroring problem.
    I had her log into Outlook on a computer on domain.com located in my office and leave it running for 3 days. Every time her Outlook client on her regular computer would start or stop mirroring mailboxes, she would let me know, and I'd check the computer
    in my office and find no problem.
    So the problem is something in the foreign domain or something that that domain's administrators are doing to the computers. Unfortunately, several other people on that domain are using mailboxes and shared mailboxes on my Exchange servers in the exact same
    configuration and are not having this problem. It is only this one user.
    I am pretty sure they are not using roaming profiles. I know they are not using mandatory profiles.
    Blog /
    Twitter

  • Sections and Automatic Table of Contents

    Hello there,
    I have encountered a problem with InDesign while trying to make an automatic TOC for a journal I am working on. It has something to do with Sections.
    So I have a book with several indd files. The very first indd file is called "frontpages" which includes the cover page, the inside cover, the leaf page, then two facing pages for the table of contents, then followed by the last page (Letter from the Editor).
    This is followed by my second indd file called "newsbeats" which has 5 pages.
    Now, what I wanted to do was mark the frontpages' page numbers using lower case roman numerals (i, ii, iii, etc.) Of course I do not want to include the cover page and the inside cover, so I want to start (i) with the leaf page, (ii) and (iii) marks the table of contents pages, and finally (iv) for the Editor's Letter. I did this by starting a section at the leaf page, START PAGE NUMBERNG AT: 1, and selecting the (i, ii, iii...) option. It worked, while leavingboth the cover page and and the inside cover with markers (a) and (b), which I previously set (because I do not know how to just get rid of the page number...)
    Now, my book pages actually starts page (1) in the first page of the "newsbeats" document. So to do that, I made another section on the newsbeats first page, START PAGE NUMBERING AT: 1, and selected (1, 2, 3...). That works, too.
    So at the moment, I have 3 sections to my page numbers: 1) the lower case letters (a, b) section for the cover page and inside cover, respectively; 2) the roman numerals section (i, ii, iii...) for the leafpage, table of contents, and Editor Letter; and lastly, 3) the arabic letters (1, 2, 3...) starting from the newsbeats document all the way to the last page of the last indd of my book.
    Hope it is clear enough. Now here comes the problem:
    When I try to create an automatic Table of Contents, it correctly finds my chapters (i used the style for each journal article's title) and lists them. The problem is, the page numbers do not appear correctly. Instead, it shows "a" on EACH AND EVERY table of contents ENTRY. I tried some trial and error, and found out that the pages shown (a bunch of "a") is actually the COVER PAGE'S (a) page number....
    I tried for hours searching on topics like "Sections and Automatic TOC" or "How to selectively choose which pages to include in a TOC".. But I found none.
    Your help would be really appreciated. I can easily manually type the page numbers (my journal only has 9 articles), but I wanted to do this in a very systematic way, so it would be a lot easier if in any case, there are more than 9 articles for next year's publication.
    THANK YOU SO MUCH!
    - Larry
    PS: I attached a file showing the generated table of contents (on the ii-iii page that I wanted it to appear on), with the frontpages page panel, which shows the page numbering as well. Also I included the Book Panel, so you see how the pages are set up.

    We definitely experienced the same issue. Seems like pages just get lost. This is the approach I took:
    On the groups main page we just added a link called 'View All Articles' wrapped in a h1 tag (to make it very big and visible to the user) using the following url:
    search/?q=%20
    The resulting page will search for every article with a space in it and return the results. Still not the most elegant solution but it works. I'd like to implement it right into the xsl file but haven't found very much documentation to aid in this.

  • How to hyperlink to particular spry panel tab

    I have spry panel which has 3 tabs. Everythings works fine.
    When I load the page which has spry panel, the content of the
    first tab is shown which is fine.
    Now I am trying to make a link from another page which points
    to the page which has spry panel. I can easily put the link but
    what I want to do is when the link is clicked I was show the
    content of third tab instead of the first tab. How do I do this?
    Can someone please help me?

    Meant to do? Meant to do anything you can get it to do
    Put this in the head of your document:
    <script src="SpryAssets/SpryURLUtils.js" type="text/javascript"></script>
    <script type="text/javascript">
    var params = Spry.Utils.getLocationParamsAsObject();
    function MM_goToURL() { //v3.0
      var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
      for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
    </script>
    Link the SpryURLUtils.js per the first line in my quoted code.
    The second script bit above calls the variable and sets up a function. Don't mess with it, just use it.
    You'll have material like this in the foot of your page, just before the closing body tag:
    <script type="text/javascript">
    <!--
    var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1", {defaultTab: params.tab ? params.tab : 0});
    var Accordion1 = new Spry.Widget.Accordion("Accordion1", {defaultPanel: params.panel ? params.panel: 0});
    var Accordion2 = new Spry.Widget.Accordion("Accordion2", {defaultPanel: params.panel ? params.panel: 0});
    var Accordion3 = new Spry.Widget.Accordion("Accordion3", {defaultPanel: params.panel ? params.panel: 0});
    //-->
    </script>
    These help to make your widgets work. Don't worry if you don't have what I have exactly; I copied this from one of my sites. But the
    var TabbedPanels1 = etc. etc. line you WILL have. You will also have a second one if you have TWO sets of tabbed panels on your page. The first should be TabbedPanels1, the second will be TabbedPanels2, etc., etc.
    Here's a quote from my site, showing a "call" or link to widgets in other parts of the page. I set my whole site (except more recent pages) as ONE page, so this should be similar to how you set up your call:
    <div class="image_gallery">      <a href="?tab=5&amp;panel=3#TabbedPanelsTab&amp;Accordion1" title="Disappeared Children" target="_self"><img src="images/homeArgentina.gif" alt="Argentina website" /></a><br />
          <em>Website (early project):<br />
          &ldquo;Disappeared Children: We Search for Them&rdquo;</em></div>
    Note the <a href... tag. You don't need a page name, because you are staying on the same page. But this calls tab 5 AND panel 3. If you look at my page www.gravenimagedesign.net, look for the fourth image from the left on the top row on the "home" screen. Click on it, and see where it takes you.
    Remember that all is based on zero being the first tab, 0, 1, 2, 3, etc.
    Oops, gotta go. Let me know if you need more help with this. It is something that I have to dig back into my own code to remember.
    Best,
    Beth

  • Disable a  mitre of spry panel with mitre

    hello,
    I use spry panel with mitre of dreamweaver in a dynamic
    website (PHP) , and i want to disable a mitre of spry panel with
    mitre ,by code ( javascrypt or PHP).
    How to do ?
    thanks

    im so sorry im just a newbie in php, i still dont know how to publish it on the net, im using wamp server.
    here are the codes for the recordset paging navigator which are inside the spry accordion content:
    <td><?php if ($pageNum_rs_ProgramList > 0) { // Show if not first page ?>
                        <a href="<?php printf("%s?pageNum_rs_ProgramList=%d%s", $currentPage, 0, $queryString_rs_ProgramList); ?>">First</a>
                        <?php } // Show if not first page ?></td>
                      <td><?php if ($pageNum_rs_ProgramList > 0) { // Show if not first page ?>
                        <a href="<?php printf("%s?pageNum_rs_ProgramList=%d%s", $currentPage, max(0, $pageNum_rs_ProgramList - 1), $queryString_rs_ProgramList); ?>">Previous</a>
                        <?php } // Show if not first page ?></td>
                      <td><?php if ($pageNum_rs_ProgramList < $totalPages_rs_ProgramList) { // Show if not last page ?>
                        <a  href="<?php printf("%s?pageNum_rs_ProgramList=%d%s", $currentPage, min($totalPages_rs_ProgramList, $pageNum_rs_ProgramList + 1), $queryString_rs_ProgramList);?>">Next</a>
                        <?php } // Show if not last page ?></td>
                      <td><?php if ($pageNum_rs_ProgramList < $totalPages_rs_ProgramList) { // Show if not last page ?>
                        <a href="<?php printf("%s?pageNum_rs_ProgramList=%d%s", $currentPage, $totalPages_rs_ProgramList, $queryString_rs_ProgramList); ?>">Last</a>
                        <?php } // Show if not last page ?></td>
                    </tr>
                  </table></td>
    thanks in advance...

  • When i log onto the internet a box come up on the bottom "show all content" how do i stop this

    When i log into windows a message comes up on the bottom of the screen "SHOW ALL CONTENT" how do I stop this message from coming up it is so annoying.
    This question was solved.
    View Solution.

    Hi,
    Close any open Internet Explorer windows.
    Open windows Control Panel, open Internet Options, click the Security tab and click Custom Level.  About half way down, under the heading Miscellaneous, there is an entry for 'Display Mixed Content' - click Enable and then Ok, then click Apply and Ok in the previous window.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Checking for Content in Collapsible Panel

    Is it possible, to programmatically, have Collpasible Panels
    open or closed , based on whether there is content in the panel or
    not? I have a scenario where we have emploeyed the collapsible
    panels, but have some panel sections that do not have content yet,
    and some that do. Eventually they will all have content, but not
    right now. My client still wants to retain those empty panels for
    future use, but only have the populated panels open when first
    entering the page.

    Hi Diana,
    I have a question about your second example above where "all
    panels when page loads are closed" You say that adding the
    following script should work:
    <script language="JavaScript" type="text/javascript">
    var cpg2 = new
    Spry.Widget.CollapsiblePanelGroup("CollapsiblePanelGroup2", {
    contentIsOpen: false });
    </script>
    Since I am using the Spry.widget.Accordian version. I
    modified the above script to read:
    <script language="JavaScript" type="text/javascript">
    var Accordion1 = new Spry.Widget.Accordion("Accordion1", {
    contentIsOpen: false });
    </script>
    for the following elements markup inside of the html tags:
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title>Spry Accordion</title>
    <script language="JavaScript" type="text/javascript"
    src="javascript/SpryAccordion.js"></script>
    <link href="styles/SpryAccordion.css" rel="stylesheet"
    type="text/css" />
    </head>
    <body>
    <div class="Accordion" id="Accordion1" tabindex="0">
    <div class="AccordionPanel">
    <div class="AccordionPanelTab">Panel 1</div>
    <div class="AccordionPanelContent">
    Content for Panel 1 goes here!<br />
    </div>
    </div>
    <div class="AccordionPanel">
    <div class="AccordionPanelTab">Panel 2</div>
    <div class="AccordionPanelContent">
    Content for Panel 2 goes here!
    </div>
    </div>
    <div class="AccordionPanel">
    <div class="AccordionPanelTab">Panel 3</div>
    <div class="AccordionPanelContent">
    Content for Panel 3 goes here!
    </div>
    </div>
    <div class="AccordionPanel">
    <div class="AccordionPanelTab">Panel 4</div>
    <div class="AccordionPanelContent">
    Content for Panel 4 goes here!
    </div>
    </div>
    </div>
    <script language="JavaScript" type="text/javascript">
    var Accordion1 = new Spry.Widget.Accordion("Accordion1");
    </script>
    <script language="JavaScript" type="text/javascript">
    var Accordion1 = new Spry.Widget.Accordion("Accordion1", {
    contentIsOpen: false });
    </script>
    </body>
    The result I get is that the first panel still opens by
    default in a new or refreshed browser window. Any ideas how to
    change this so that no panels are open by default?
    Thanks,
    Robert

  • Spry Panels and FireFox issue

    I can't get my spry panels to position correctly in Firefox but are fine in the other browsers. Can someone please advise??
    Thanks!
    Janie
    http://0000uhy.previewcoxhosting.com/Pages/ourservices.html

    Hello,
    In the sprymenubarvertical.css file, try changing position:
    static; to
    position: relative;
    in the ul.MenuBarVertical li style.
    Also, you should get rid of the link to test.css as it's an
    html page in a
    css file.
    Take care,
    Tim
    "Striker" <[email protected]> wrote in message
    news:fqkk1e$sak$[email protected]..
    > Sorry Spry menus, and they show up in the top right in
    FF
    > .
    > "Striker" <[email protected]> wrote in message
    > news:fqkcfj$ki6$[email protected]..
    >> www.scottmertens.com
    >>
    >> Any of the submenus on this site work fine in IE7,
    but in Firefox the
    >> submenu is positioned in to top left corner
    partially off the screen and
    >> not readable or clickable. Any ideas what is wrong?
    >

Maybe you are looking for