[ENH]HtmlTables in Scamper (work in slow progress)

Karl Ramberg karl.ramberg at chello.se
Sun Jan 20 16:48:22 UTC 2002


John Hinsley wrote:

> I can't get the little blue rectangle, but then, I'm using off line html
> pages. Do you think you could point me to a page you're opening Scamper
> on (and seeing the rectangle)?
> 
> BTW, looks like I already had a change set with the same name & number.
> You didn't post the wrong .cs, by any chance?

Thanks for you interest:-)

Sorry about the name and number of the change set but it is a 
new one, I have just changed images, directories etc. several times 
over the time I've been working on this.

This is a little shortcut to access the TableMorph,
just open a inspector on Scamper and doit:

self allMorphsDo: [:i| (i isKindOf: TableMorph) ifTrue:[i makeATable]]

Note that you can use the FileList to locate a html file and the options menu
in the FileList will offer you to open it in a browser e.g. Scamper.

Karl

Here is a table I've been using to test with.

<HTML>
<HEAD>
<TITLE>Untitled</TITLE>
</HEAD>
<BODY>
<TABLE BORDER="3" CELLSPACING="2" CELLPADDING="1">
	<TR>
		<TD COLSPAN="4" ALIGN=CENTER>&nbsp;</TD>
	</TR>
	<TR>
		<TD WIDTH="70" ALIGN=CENTER>&nbsp;</TD>
		<TD COLSPAN="3" ALIGN=CENTER>&nbsp;</TD>
	</TR>
	<TR>
		<TD ALIGN=CENTER>&nbsp;</TD>
		<TD WIDTH="70" ROWSPAN="2" ALIGN=CENTER>&nbsp;</TD>
		<TD WIDTH="32" ROWSPAN="2" ALIGN=CENTER>&nbsp;</TD>
		<TD WIDTH="23" ALIGN=CENTER>&nbsp;</TD>
	</TR>
	<TR>
		<TD ALIGN=CENTER>&nbsp;</TD>
		<TD ALIGN=CENTER>&nbsp;</TD>
	</TR>
</TABLE>
</BODY>
</HTML>



More information about the Squeak-dev mailing list