Posted by ASM on 09/22/06 22:30
wmanzo@yahoo.com a écrit :
>
> The major problem is my page scroll bar and that the user
> cannot click and move it around the page when I use
> Iframes. And, it is a very neat scroll bar.
the browser has lost its lifts ?
there is no way to use css and rule overflow: scroll; ?
> Also, I only use and code for MSIE.
and ?
> Thank you for your quick response.
In my mind, you need in your pages displayed in iframe a similar
function as that in main page.
function iframe_mouseMove(e){
ms_x = event.x+document.body.scrollLeft;
ms_y = event.y+document.body.scrollTop;
if (ms_x < 0){ms_x = 0;}
if (ms_y < 0){ms_y = 0;}
parent.document.xy_display.xcoord.value = ms_x;
parent.document.xy_display.ycoord.value = ms_y;
return false;
}
Don't know reactions of main coordinate function in this case :-(
--
ASM
Navigation:
[Reply to this message]
|