|
Posted by Hans on 05/19/06 14:41
Hi Martin,
Thanks for your kind reply.
I do agree, it's a bit difficult. Unfortunately I am developing this on
my own PC, so no web page available to show over the internet.
Maybe this helps a little bit:
+---------------------+
| a | b | c | |
+-----+-----+----+ w |
| d | e | f | p |
+-----+-----+----+ f |
| g | h | i | r |
+-----+-----+----+----|
| wpfu |
+---------------------+
It looked okay in the preview but I'm sure it messed it up again.
The picture describes the frameset which has 2 rows, the first of which
is a frameset again with 2 columns, the left one of which is a table
with three rows each having 3 columns with an image. To the right of
the table, in the second column of the second frameset, there should be
an image of a right-arrow (wpfr) which spans across the height of the
table i.e. the rightmost table column. The second row of the top
frameset should have an image of a down-arrow that spans across the
last row of the table (wpfu).
Basically it symbolizes a cube with an arrow to the right and one down.
I have tried to strip off the html code anything not necessary
<html>
<body leftmargin="0">
<frameset rows="70%, *" > frameset with 2 rows
<frameset cols="75%, *" > first row ios a frameset with 2 columns
<frame> first frame contains a table with 3 rows, each having 3
images
<table>
<tr>
<td><img src="./w_a.jpg"> </td>
<td><img src="./w_a.jpg"> </td>
<td><img src="./w_a.jpg"> </td>
</tr>
<tr>
<td><img src="./w_a.jpg"> </td>
<td><img src="./w_a.jpg"> </td>
<td><img src="./w_a.jpg"> </td>
</tr>
<tr>
<td><img src="./w_a.jpg"> </td>
<td><img src="./w_a.jpg"> </td>
<td><img src="./w_a.jpg"> </td>
</tr>
</table>
</frame>
<frame> second frame should contain an image of a right-arrow
<table>
<tr>
<td><img src="./w_pfr.jpg" border="0"></td>
</tr>
</table>
</frame>
</frameset> end of frameset with 2 columns
<frame> frame for second row in top frameset
<table> this frame should contain an image with a down-arrow
<tr>
<td><img src="./w_pfu.jpg" border="0"></td>
</tr>
</table>
</frame>
</frameset>
</body>
</html>
Maybe this helps. If not...tough luck! :-)
Thanks anyway for trying!
Hans
[Back to original message]
|