Sue, think it through. The current autostart is driven by a click on a Thumb; this is the whole design approach behind Highslide JS.
It can be any Thumb and the carousel starts from the clicked Thumb.
To do this on page load, you would have to set up code on one of the Thumbs to make it fire directly.
Should it always be the same one?
If you take my example, I decided to auto-open on the roses.
In the design, Ctrl-click on the roses image, picking that.
Give that the
Name (anchor): roses.
Add the following JavaScript to the Page Body:
Code:
<script>
window.onload = function(){
document.getElementById('roses').click();
}
</script>
A random pick may be possible.
Beyond that, I would be speculating.
Acorn
Bookmarks