Hello:
The following script
[HTML]// =============== =============== =========
// do not edit anything below this line
// =============== =============== =========
var t
var j = 0
var p = Pic.length
var preLoad = new Array()
for (i = 0; i < p; i++){
preLoad[i] = new Image()
preLoad[i].src = Pic[i]
}
function runSlideShow(){
if (document.all){
document.images .SlideShow.styl e.filter="blend Trans(duration= 3)"
document.images .SlideShow.filt ers.blendTrans. Apply()
}
document.images .SlideShow.src = preLoad[j].src
if (document.all){
document.images .SlideShow.filt ers.blendTrans. Play()
}
j = j + 1
if (j > (p-1)) j=0
t = setTimeout('run SlideShow()', speed)
}
</script>[/HTML]
Fades & switching to the next picture work fine in IE, but no Fades in Mozilla Firefox Version 3.03 just switching to next picture. Is there a way to get the fading to work also in Firefox ?
Thank You for your help in Advance
The following script
[HTML]// =============== =============== =========
// do not edit anything below this line
// =============== =============== =========
var t
var j = 0
var p = Pic.length
var preLoad = new Array()
for (i = 0; i < p; i++){
preLoad[i] = new Image()
preLoad[i].src = Pic[i]
}
function runSlideShow(){
if (document.all){
document.images .SlideShow.styl e.filter="blend Trans(duration= 3)"
document.images .SlideShow.filt ers.blendTrans. Apply()
}
document.images .SlideShow.src = preLoad[j].src
if (document.all){
document.images .SlideShow.filt ers.blendTrans. Play()
}
j = j + 1
if (j > (p-1)) j=0
t = setTimeout('run SlideShow()', speed)
}
</script>[/HTML]
Fades & switching to the next picture work fine in IE, but no Fades in Mozilla Firefox Version 3.03 just switching to next picture. Is there a way to get the fading to work also in Firefox ?
Thank You for your help in Advance
Comment