I used the following replace() function (Java Script)
 

<SCRIPT LANGUAGE="JavaScript"><!--

function replace(string,text,by) {

// Replaces text with by in string

var strLength = string.length, txtLength = text.length;

if ((strLength == 0) || (txtLength == 0)) return string;

var i = string.indexOf(text);

if ((!i) && (text != string.substring(0,txtLength))) return string;

if (i == -1) return string;

var newstr = string.substring(0,i) + by;

if (i+txtLength < strLength)

newstr += replace(string.substring(i+txtLength,strLength),text,by);

return newstr;

}

//--></SCRIPT>

And then did this, for example, to change the MailboxFolderSummary to Blue backround with a white border and 100% of the screen:

 

<script language="JavaScript">

document.write(replace('<!--IMAIL.MessageSummary-->','border','border="1" cellpadding="0" cellspacing="0" bordercolor="#FFFFFF" bgcolor="#63B5FF" width="100%"' ));

</script>

I've just recently had some good results with this.

Hope it helps,

Salvatore

 

-----Original Message-----
From: José Miguel Rodriguez <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED] <[EMAIL PROTECTED]>
Date: Mittwoch, 8. Dezember 1999 22:37
Subject: [IMail Forum]

I would like to change table properties in <!--IMAIL.MailboxFolderSummary-->
 
How I must to do?
 
Miguel Rodriguez

Reply via email to