having some difficulty with removing some img's out of an ilayer...
i have a frame with a scroll text within an ilayer that works off a rollover..
sample:
[HTML]<html>
<head>
<title></title>
<script language="JavaS cript1.2">
iens6=document. all||document.g etElementById
ns4=document.la yers
//specify speed of scroll (greater=faster )
var speed=5
if (iens6){
document.write( '<div id="1" style="position :relative;top:1 50;width:175;he ight:160;border :0px;overflow:h idden">')
document.write( '<div id="2" style="position :absolute;width :170;left:0;top :0">')
}
</script>
</head>
<ilayer name="ns1" width=175 height=160 clip="0,0,175,1 60">
<layer name="ns2" width=175 height=160 visibility=hidd en>
<!-CONTENT START-->
<!--END CONTENT-->
</layer>
</ilayer>
<script language="JavaS cript1.2">
if (iens6)
document.write( '</div></div>')
</script>
<table width="175px">< td><p align="right">
<a href="#" onMouseover="mo veup()" onMouseout="cle arTimeout(moveu pvar)"><img src="up.gif" border=0></a> <a href="#" onMouseover="mo vedown()" onMouseout="cle arTimeout(moved ownvar)"><img src="down.gif" border=0></a></p></td>
</table>
<script language="JavaS cript1.2">
if (iens6){
var crossobj=docume nt.getElementBy Id? document.getEle mentById("conte nt") : document.all.co ntent
var contentheight=c rossobj.offsetH eight
}
else if (ns4){
var crossobj=docume nt.nscontainer. document.nscont ent
var contentheight=c rossobj.clip.he ight
}
function movedown(){
if (iens6&&parseIn t(crossobj.styl e.top)>=(conten theight*(-1)+100))
crossobj.style. top=parseInt(cr ossobj.style.to p)-speed
else if (ns4&&crossobj. top>=(contenthe ight*(-1)+100))
crossobj.top-=speed
movedownvar=set Timeout("movedo wn()",20)
}
function moveup(){
if (iens6&&parseIn t(crossobj.styl e.top)<=0)
crossobj.style. top=parseInt(cr ossobj.style.to p)+speed
else if (ns4&&crossobj. top<=0)
crossobj.top+=s peed
moveupvar=setTi meout("moveup() ",20)
}
function getcontent_heig ht(){
if (iens6)
contentheight=c rossobj.offsetH eight
else if (ns4)
document.nscont ainer.document. nscontent.visib ility="show"
}
window.onload=g etcontent_heigh t
</script>
</body>
</html>
[/HTML]
The problem is that the table with the scroll contorls are below the ilayer. I want them to be above? but I cant get them out of the ilayer... do i need to have a diffferent start layer?
help?!
i have a frame with a scroll text within an ilayer that works off a rollover..
sample:
[HTML]<html>
<head>
<title></title>
<script language="JavaS cript1.2">
iens6=document. all||document.g etElementById
ns4=document.la yers
//specify speed of scroll (greater=faster )
var speed=5
if (iens6){
document.write( '<div id="1" style="position :relative;top:1 50;width:175;he ight:160;border :0px;overflow:h idden">')
document.write( '<div id="2" style="position :absolute;width :170;left:0;top :0">')
}
</script>
</head>
<ilayer name="ns1" width=175 height=160 clip="0,0,175,1 60">
<layer name="ns2" width=175 height=160 visibility=hidd en>
<!-CONTENT START-->
<!--END CONTENT-->
</layer>
</ilayer>
<script language="JavaS cript1.2">
if (iens6)
document.write( '</div></div>')
</script>
<table width="175px">< td><p align="right">
<a href="#" onMouseover="mo veup()" onMouseout="cle arTimeout(moveu pvar)"><img src="up.gif" border=0></a> <a href="#" onMouseover="mo vedown()" onMouseout="cle arTimeout(moved ownvar)"><img src="down.gif" border=0></a></p></td>
</table>
<script language="JavaS cript1.2">
if (iens6){
var crossobj=docume nt.getElementBy Id? document.getEle mentById("conte nt") : document.all.co ntent
var contentheight=c rossobj.offsetH eight
}
else if (ns4){
var crossobj=docume nt.nscontainer. document.nscont ent
var contentheight=c rossobj.clip.he ight
}
function movedown(){
if (iens6&&parseIn t(crossobj.styl e.top)>=(conten theight*(-1)+100))
crossobj.style. top=parseInt(cr ossobj.style.to p)-speed
else if (ns4&&crossobj. top>=(contenthe ight*(-1)+100))
crossobj.top-=speed
movedownvar=set Timeout("movedo wn()",20)
}
function moveup(){
if (iens6&&parseIn t(crossobj.styl e.top)<=0)
crossobj.style. top=parseInt(cr ossobj.style.to p)+speed
else if (ns4&&crossobj. top<=0)
crossobj.top+=s peed
moveupvar=setTi meout("moveup() ",20)
}
function getcontent_heig ht(){
if (iens6)
contentheight=c rossobj.offsetH eight
else if (ns4)
document.nscont ainer.document. nscontent.visib ility="show"
}
window.onload=g etcontent_heigh t
</script>
</body>
</html>
[/HTML]
The problem is that the table with the scroll contorls are below the ilayer. I want them to be above? but I cant get them out of the ilayer... do i need to have a diffferent start layer?
help?!
Comment