|
Outlook Stationary is a lot like a web page
Outlook Stationary can use a background sound of either a MIDI or WAVE (Maybe AU). Say the sound is mysong. Than a MIDI (for Musical Instrument Digital Interface if you really care to know), would be mysong.mid, the wave file mysong.wav and the AU form (by Sun Microsystems and used in JavaScript applets) would be mysong.au (I have not tested applets with Outlook) Outlook Stationary can use a background graphic of either a JPG or GIF (Maybe PNG) A couple of important things about Outlook Stationary OK, I made up an Outlook Stationary sample in a ZIP file using the
cut and paste example below.
Just unzip it into the Outlook Stationary has a lot to do with "Style Sheets" and while
there are a lot of better ones on the web, I will point you to my
humble Style sheet page. That should be enough for now to get started on Outlook Stationary.
There a lot of really good pages on it which I will add when I find
them. ----------------- CUT HERE -----------------
<HTML>
<HEAD>
<TITLE>
Name of Page or Stationary
</TITLE>
<STYLE TYPE="text/css">
<!--
body {
background-color: red ;
/* Set Background Color for Stationery */
/* Some Named colors but Always You can use #FF0000 (red in this case) */
background-repeat: repeat-y;
/* Left Border - Image repeats down the left side of the screen */
/* repeat-x is across, repeat-y is up and down on the screen */
/* Leave that out and the default is "Tiled" over the whole screen */
margin-left: 250;
/* Left Margin - Sets the Left margin in pixels (where you start to type) */
font-weight: Bold;
font-family: "New Times Roman,Arial";
/* Default Font and mames with "White Space" need to ues Quotation Marks */
font-size: 12pt;
/* Default Font size in like type setters points */
/* but with different size screens you never know */
}
-->
</STYLE>
</HEAD>
<BODY BACKGROUND="mypict.jpg" text="#99ff66" link="#ffff00" vlink="#00ffff" Alink="#cc0033">
</DIV>
<BGSOUND balance=0
src="C:\Program Files\Common Files\Microsoft Shared\Stationery\Song001.mid"
volume=0 loop='infinite'>
</BODY>
</HTML>
----------------- AND FINISH CUT HERE ----------------- |