Preloading possible with panosalado?

Hi everyone,

I saw that there is a plugin for FPP that can cache all files from the XML. I am looking for this exact feature, only for panosalado.

I am going to look if i can write something in actionscript, perhaps something with javascript. But if someone know if the cache plugin for FPP can be used for panosalado it would be nice to know.

re: Preloading possible with PanoSalado?

Hey Martijn:

You could use some Javascript inside your HTML, a la:

<script language="JavaScript">
<!--// hide from non-JavaScript-browsers

function PreloadImages()
{
var myImage1 = new Image();
myImage1.src = 'images/image1.jpg';

var myImage2 = new Image();
myImage2.src = 'images/image2.jpg';

// etc.
}

// End Hiding -->
</script>

<body onload="PreloadImages()">

This and other approaches are discussed here.

Cheers!

Patrick

__________________

Patrick Cheatham
Forum Administrator