Code: Select all
<title>SpiderBasic</title>
It would be nice if the developer could change the title via SB-code. My suggestion:
Code: Select all
SetTitle("my title")
Code: Select all
<title>SpiderBasic</title>
Code: Select all
SetTitle("my title")
Angelo wrote:So far, the "title line" in the html-file is alwaysand it can only be changed by opening and changing the html-file itself.Code: Select all
<title>SpiderBasic</title>
It would be nice if the developer could change the title via SB-code. My suggestion:Code: Select all
SetTitle("my title")
Code: Select all
Procedure SetTitle( Title.s )
! document.title = v_title;
EndProcedure
but for the duration of loading the page (until setting the title with the code above), "SpiderBasic" appears as title.sworteu wrote:Code: Select all
Procedure SetTitle( Title.s ) ! document.title = v_title; EndProcedure