Outra variação na mensagem de rodapé

 

Se você quiser variar o estilo da mensagem de rodapé , como neste exemplo, faça o seguinte:

1.Abra uma nova mensagem.

2.Clique em "Origem" e delete tudo o que lá aparece.

3.Cole o seguinte código:

----------------------------------------------------------------------------------------------------------------------------------------------------------------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE>Barra de Status 3</TITLE>
<META http-equiv=Content-Type content=text/html;CHARSET=iso-8859-1>
<SCRIPT language=JavaScript>
<!--
// C
// Pe
// no
// av

function scrollBanner(seed) {
// set pause in milliseconds between each movement
var speed = 40

// assign one-space string to variable (space pads left side of status bar)
var str = " "

// create global array
var ar = new Array()

// assign the strings to the array's elements
ar[0] = "<<<>>> Escrever aqui sua mensagem <><><>Outro tipo de mensagem na barra de status <><><> http://www.ilove.com.br/lili<<<>>> "

// join all messages to one string variable with no delimiter
var total = ar.join("")

// if message has not yet reached the left side of the status bar
if (seed <= 100 && seed > 0) {
// assign string of seed spaces to variable
for (var i = 0; i < seed; ++i) {
str += " "
}

// append message to end of output string
str += total

// message moved one position to the left
seed--

// assign expression containing recursive call with literal argument in form of string
var cmd = "scrollBanner(" + seed + ")"

// place computed message in status bar
window.status = str

// recursive call after speed milliseconds
timerID = setTimeout(cmd, speed)
} else
// if a substring of the total message still remains in status bar
if (-seed < total.length) {
// assign part of message that has not slided off the left
str += total.substring(-seed, total.length)

// message has moved one position to the left
seed--

// assign expression containing recursive call with literal argument in form of string
var cmd = "scrollBanner(" + seed + ")"

// place computed message in status bar
window.status = str

// recursive call after speed milliseconds
timerID = setTimeout(cmd, speed)
} else {
// assign a one-space string to status bar
window.status = str

// recursive call after speed milliseconds at initial position
timerID = setTimeout("scrollBanner(100)", speed)
}
}

// -->
</SCRIPT>

<META content="MSHTML 6.00.2800.1106" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY text=black vLink=blue link=blue bgColor=#ffffff

onload=scrollBanner(100)></BODY></HTML>


----------------------------------------------------------------------------------------------------------------------------------------------------------------


Prontinho. Basta você substituir o que está em vermelho pela mensagem que quer que apareça no rodapé.

Agora é só voltar à "Editar" e fazer as formatações que desejar.

Aqui você encontra a versão prontinha para e-mail desta dica. Está zipada no formato .eml (próprio para o Outlook Express)

(Dica adaptada por Lilian Russo)

Lilian Russo - Todos os Direitos Reservados - ©2002/2007




.