"Patrick Gallagher" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Just wondering if this is being looked into - I used Dreamweaver 4.01
> (with Netscape 6 compatibility adjustments) to set up a page using
> layers, and I used the Flash Text feature to insert a price for an item.
> As of now, that flash item won't show in the browser at all using
> Mozilla 0.9.3/Netscape 6.1 (and so far it's never worked in any version
> of Mozilla or Netscape 6)
>
> http://www.lastingcdn.com/hot.htm
>
> click on the "trisider ice" link on the left side, there should be a
> price right under the words "BIC Trisider ICE" - and there is on any
> other browser...
I'd be willing to bet that the problem is this code:
function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document;
if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++)
x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++)
x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}
The for loop uses "d.layers". Mozilla doesn't support
the layers member of document objects.