Here is something really, really basic to get you started. Create a custom XML template in any template group and do something similar to this: Note - I don’t know your actual XML that is required.
<?xml version="1.0" encoding="UTF-8"?>
<news>
<section>
{exp:weblog:entries weblog="your_weblog" limit="5"}
<title>{title}</title>
<summary>{summary}</summary>
<link>{custom_link_field}</link>
{/exp:weblog:entries}
</section>
</news>
You can also create custom fields and have them included. If using links, make sure you modify your weblog posting preferences in Admin › Weblog Administration › Weblog Management › Edit Weblog to not Automatically turn URLs and email addresses into links.
That looks good. Now the Amara software people tell me their product will not work with EE because the XML file has to be in their format. Their format is shown below:
<item license=“Don’t remove this paragraph, or your template will stop working. Amara Software owns the copyright to this template, which may not be sold or resold, in its original form or as part of another template, by anyone other than Amara Software. To check the full license restrictions, please refer to http://www.amarasoftware.com/ntlicense.html.”>
<itemlink=”” target-frame=“_self” font-face=“Arial” font-size=“12” font-color=“16777215” higlight-color=“12632256”>
<![CDATA[Welcome to Amara News Ticker allows you to create Flash news tickers instantly.]]>
</item>
<itemlink=”” target-frame=“_self” font-face=“Arial” font-size=“12” font-color=“16777215” higlight-color=“12632256”>
<![CDATA[Amara News Ticker blah blah blah.]]>
</item>
</item>
I am not in the office as yet so I cannot test this until tomorrow in EE, however I was able to test the template by changing item to section and adding the XML encoding at the beginning and that did not screw up the ticker but from your sample do you think this will work? shown below:
<?xml version=“1.0” encoding=“UTF-8”?>
<news license=“Don’t remove this paragraph, or your template will stop working. Amara Software owns the copyright to this template, which may not be sold or resold, in its original form or as part of another template, by anyone other than Amara Software. To check the full license restrictions, please refer to http://www.amarasoftware.com/ntlicense.html.”>
<section link=”” target-frame=“_self” font-face=“Arial” font-size=“12” font-color=“14737632” higlight-color=“12632256”>
{exp:weblog:entries weblog="your_weblog" limit="5"}
<![CDATA[{title}\n{summary}]]>
{/exp:weblog:entries}
</section>
</news>
Thanks for all your help. I may only find out via trial and error so thanks for giving me a start.
Regards,
Socaprice