This is a simplification and clarification to the https://www.talkgraphics.com/showthr...Xara-Slideshow.
It will work for XPro+ and XDPXv18.5. You may have some issues with Xara Bugs that affected earlier versions.

The Website (or Placeholder) Code (head) is three lines of JavaScript to cycle through the pages of a Supersite/Transitions website:

<script>
function showTime() { xr_spapp( (xr_curp + 1)%xr_spapn ); } // Thanks to siran
var pageWait = 4157; // uses milliSeconds
var presentation = setInterval(function() { showTime() }, pageWait);
</script>

You can place the entire website into an IFRAME (Embed a website Widget) to realise a full slider capability.

It is up to you what you present.
Each page can have its own Transition applied and its time to present set separately.

At its simplest, you could just have an image or text for each Slide. Or both.
You can add links and other effects to make the whole thing interactive.

I have included some extra code to allow a Pause button to be pressed.
The Slide controls are basic as the timer is relentless, so you need not uses them.

JS - Supersite Animation.xar

Acorn