|
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
|
- Re: [IMail Forum] Daniel Donnelly
- Re: [IMail Forum] ## Dusty Carden
- [IMail Forum] Steve
- [IMail Forum] Sufian Zainal
- [IMail Forum] mroberts
- [IMail Forum] lists
- [IMail Forum] Rob Witzel
- RE: [IMail Forum] ## Dusty Carden
- [IMail Forum] Jos� Miguel Rodriguez
- [IMail Forum] Off topic MS DNS Salvatore Giacinto
- [IMail Forum] Off topic MS DNS Robert Everland III
- RE: [IMail Forum] Off topic MS DNS Carlos Diaz, System Eng.
- Re: [IMail Forum] Daniel Donnelly
- [IMail Forum] jstitt
- RE: [IMail Forum] Scott Phillips
- RE: [IMail Forum] Ralph Williams
- [IMail Forum] Imail Shield Len Conrad
- RE: [IMail Forum] Imail Shield Phil Daws
- [IMail Forum] Imail Shield Len Conrad
- Re: [IMail Forum] Imail Shi... Roger Heath
