|
a) Netscape refuses to use cashed images, it will
hit the server every time.
b) Solution: Preload the image yourself into an
array
var ImageArray = new Array();
ImageArray[0] = new Image;
ImageArray[0].src = "the image source"
do this for all images..
then in the code that switches the images:
Button.src = ImageArray[0].src;
This should prevent the browser from hitting the server for the
images
----- Original Message -----
|
- [Dynapi-Dev] PreLoading menu button graphics and precr... Jim Foster
- Re: [Dynapi-Dev] PreLoading menu button graphics ... Doug Melvin
- Re: [Dynapi-Dev] PreLoading menu button graph... Scott Andrew LePera
