Outlook Express Signature

M

Maxi

Hi!

I have taken an javascript code from http://www.javascript-page.com
which flashes my name. If I copy the below given code in a notepad and
save it as an .html file, it works great but when I put it in Outlook
Express, the name does not flash. Whats up???

Following are the steps that I followed to put the signature in OE
Tools/Options
Signature tab
Select "File" radio button
Type the path of the signature.html file

Following is the javascipt code:
<FONT color="blue" face=Verdana size=2>Regards</FONT> </P>
<SPAN id=ME style="COLOR: black; FONT-FAMILY: Verdana; FONT-SIZE:
medium; FONT-WEIGHT: bolder">Mahesh Chindarkar
</SPAN>

<script language="Javascript1.2">
<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com

function flashName(){
if(ME.style.color=="black"){
ME.style.color="red"
}
else
{
ME.style.color="black"
}
}

flashName();
iTimer = window.setInterval("flashName()",1000);

</SCRIPT>

Any help will be appreciated

Maxi
 
R

Roady [MVP]

Scripts are blocked since it will also allow you to execute malicious code
as well.

For more info regarding the implementation of this in OE ask in an Outlook
Express forum. This is an Microsoft Office Outlook forum.

Outlook Express is family of Internet Explorer and Outlook of the Office
family.

Here is the link for the right forum
http://communities.microsoft.com/newsgroups/default.asp?icp=InternetExplorer

Good Luck!

--
Robert Sparnaaij [MVP-Outlook]
www.howto-outlook.com

Tips of the month:
-Backup and Restore
-Create an Office XP CD slipstreamed with Service Pack 3
 
M

Maxi

Thank you Roady.

Maxi

Roady said:
Scripts are blocked since it will also allow you to execute malicious code
as well.

For more info regarding the implementation of this in OE ask in an Outlook
Express forum. This is an Microsoft Office Outlook forum.

Outlook Express is family of Internet Explorer and Outlook of the Office
family.

Here is the link for the right forum
http://communities.microsoft.com/newsgroups/default.asp?icp=InternetExplorer

Good Luck!

--
Robert Sparnaaij [MVP-Outlook]
www.howto-outlook.com

Tips of the month:
-Backup and Restore
-Create an Office XP CD slipstreamed with Service Pack 3

-----
Maxi said:
Hi!

I have taken an javascript code from http://www.javascript-page.com
which flashes my name. If I copy the below given code in a notepad and
save it as an .html file, it works great but when I put it in Outlook
Express, the name does not flash. Whats up???

Following are the steps that I followed to put the signature in OE
Tools/Options
Signature tab
Select "File" radio button
Type the path of the signature.html file

Following is the javascipt code:
<FONT color="blue" face=Verdana size=2>Regards</FONT> </P>
<SPAN id=ME style="COLOR: black; FONT-FAMILY: Verdana; FONT-SIZE:
medium; FONT-WEIGHT: bolder">Mahesh Chindarkar
</SPAN>

<script language="Javascript1.2">
<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com

function flashName(){
if(ME.style.color=="black"){
ME.style.color="red"
}
else
{
ME.style.color="black"
}
}

flashName();
iTimer = window.setInterval("flashName()",1000);

</SCRIPT>

Any help will be appreciated

Maxi
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top