Ciao,
ho costruito questo schema di frameset.

http://www.riccardoanelli.it/provaframe/prova.html

Voglio queste tre colonne: nell'ordine, la prima di 200 pixel di larghezza, la seconda di 888 e la terza quel che resta.
All'interno della seconda c'è un swf.

Quindi questo è il codice che ho usato:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />

<title>Untitled Document</title>

</head>

<frameset cols="200,888,*" frameborder="no" border="0" framespacing="0">

<frame src="sx.html" name="leftFrame" scrolling="no" noresize="noresize" id="leftFrame" title="leftFrame" />
<frame src="centro.html" name="xxx" scrolling="yes" noresize="noresize" id="xxx" title="xxx" />
<frame src="dx.html" name="mainFrame" id="mainFrame" title="mainFrame" />
</frameset>

<noframes>
<body></body>
</noframes>

</html>
Ma come faccio a far sì che - al rimpicciolimento della finestra del browser verso sx - il frame centrale non vada sopra al frame di sinistra? Io voglio che il frame di sx rimanga fisso a 200 pixel!

Con due sole colonne funzionerebbe, ma con tre no...
Potete aiutarmi? Grazie!