Ver Mensaje Individual
  #4 (permalink)  
Antiguo 21/04/2006, 05:57
Avatar de ludovico2000
ludovico2000
 
Fecha de Ingreso: noviembre-2003
Ubicación: Bizkaia
Mensajes: 1.315
Antigüedad: 20 años, 5 meses
Puntos: 2
Como cada marco es un elemento propio, tiene su propio scroll. Ahora bien, puedes meterlo todo en un "super marco" que sea el que muestre el scroll "global".

Aqui un ejemplo: (lo puedes ver funcionando en: http://galeon.com/ludovico2000/test/marcos/index.htm)

index.htm
Código:
<html>
<head>
</head>
<BODY>
<Iframe name="global" src="index_visual.htm" WIDTH=800PX HEIGHT=800PX>
</BODY>
</html>
index_visual.htm
Código:
<html>
<head>
</head>
<frameset rows="100,400,100">
  <frame name="arriba" scrolling="no" noresize target="arriba" src="arriba.htm">
    <frameset cols="166,*,289">
      <frame name="izquierda" target="principal" src="izquierda.htm" scrolling="no">
      <frame name="centro" src="centro.htm" scrolling="no">
      <frame name="derecha" src="derecha.htm" target="contenido" scrolling="no">
    </frameset>
 <frame name="abajo" scrolling="no" noresize target="contenido" src="abajo.htm">
</frameset>
</html>
arriba.htm
Código:
<html>
<head>
</head>
<body>
ARRIBA
</body>
</html>
(las demás, centro, derecha, izquierda, abajo, van igual que arriba)