PDA

View Full Version : Mouse tail script not working in Netscape


Talita
11-08-2002, 06:13 AM
Hi, I was wondering if anyone could help me - I have a mouse tail script that works perfectly in Internet Explorer but not at all in Netscape (6) - the images just appear at the top of the screen and don't move at all. Any help would be appreciated - even if this means disabling the script altogether in Netscape, so that the images never appear.

Thankyou!

Here is the code:

B=document.all;
C=document.layers;
T1=new Array("images/mouse/butterfly3.gif",32,21, "images/mouse/butterfly3.gif",32,21, "images/mouse/butterfly3.gif",32,21, "images/mouse/butterfly3.gif",32,21, "images/mouse/butterfly3.gif",32,21)
nos=parseInt(T1.length/3)
rate=50
ie5fix1=0;
ie5fix2=0;
for (i=0;i<nos;i++){
createContainer("CUR"+i,i*10,i*10,i*3+1,i*3+2,"","<img src='"+T1[i*3]+"' width="+T1[(i*3+1)]+" height="+T1[(i*3+2)]+" border=0>")}
function createContainer(N,Xp,Yp,W,H,At,HT,Op,St){
with (document){
write((!B) ? "<layer id='"+N+"' left="+Xp+" top="+Yp+" width="+W+" height="+H : "<div id='"+N+"'"+" style='position:absolute;left:"+Xp+"; top:"+Yp+"; width:"+W+"; height:"+H+"; ");
if(St){
if (C)
write(" style='");
write(St+";' ")
}
else write((B)?"'":"");
write((At)? At+">" : ">");
write((HT) ? HT : "");
if (!Op)
closeContainer(N)
}
}
function closeContainer(){
document.write((B)?"</div>":"</layer>")
}
function getXpos(N){
return (B) ? parseInt(B[N].style.left) : C[N].left
}
function getYpos(N){
return (B) ? parseInt(B[N].style.top) : C[N].top
}

function moveContainer(N,DX,DY){
c=(B) ? B[N].style :C[N];c.left=DX;c.top=DY
}
function cycle(){
if (!showTail) return;
//if (IE5)
if (document.all&&window.print){
ie5fix1=document.body.scrollLeft;
ie5fix2=document.body.scrollTop;
}
for (i=0;i<(nos-1);i++){
moveContainer("CUR"+i,getXpos("CUR"+(i+1)),getYpos("CUR"+(i+1)))
}
}

function newPos(e){
if (!showTail) return;
moveContainer("CUR"+(nos-1),(B)?event.clientX+ie5fix1:e.pageX+2,(B)?event.clientY+ie5fix2:e.pageY+2
)
}

var showTail = true; //global variable that tells when to show mouse tail

function showHideTail(objChk){
showTail = (objChk.checked) ? false:true;
}


if(document.layers)
document.captureEvents(Event.MOUSEMOVE)
document.onmousemove=newPos
setInterval("cycle()",rate)

Otherwise check out this link to view the problem:

http://www.kintek.com.au/mont/