ÿþ<!-- saved from url=(0022)http://internet.e-mail --> <!-- saved from url=(0022)http://internet.e-mail --> <html> <head> <title>Top Border Scroll</title> <style type="text/css"> <!-- body{/*more choices for styling your border around the stationery - values: ridge, solid, inset, outset*/ border-top:#99becc outset 5px; border-left:#99becc outset 5px; border-right:#99becc inset 5px; border-bottom:#99becc inset 5px; /*more choices for coloring your scrollbar*/ scrollbar-face-color:#99becc; scrollbar-arrow-color:#ffffff; scrollbar-track-color:#99becc; scrollbar-3dlight-color:#ddf2f5; scrollbar-highlight-color:#99becc; scrollbar-shadow-color:#ddf2f5; scrollbar-darkshadow-color:#99becc; margin:0px; } .tab{/*This sets the border just for the bottom of your scrolling image - values you can use are the same as the values for the message box border*/ border-bottom:5px #99becc inset; left:0px; top:0px; position:absolute; } .msg{ /*more choices for styling your border around the message box - values: ridge, solid, inset, outset, double, dotted, dashed*/ border-top:#99becc outset 3px; border-left:#99becc outset 3px; border-right:#99becc inset 3px; border-bottom:#99becc inset 3px; /*more choices for coloring your scrollbar*/ scrollbar-face-color:#99becc; scrollbar-arrow-color:#ffffff; scrollbar-track-color:#99becc; scrollbar-3dlight-color:#ddf2f5; scrollbar-highlight-color:#99becc; scrollbar-shadow-color:#ddf2f5; scrollbar-darkshadow-color:#99becc; overflow:auto; top:300px; left:10px; position:absolute; width:300px; height:300px; /*Change background of message box here */ background-color:#ddf2f5; padding:10px; font-family:Comic Sans Ms; color:#99becc; /* You can set the opacity of the message box here - values between 0 -100 */ FILTER:alpha(opacity=75, style=0) } --> </style> </head> <body background=sweetdreamsbg.jpg <!--Midi goes here - you can lower the volume of a midi that is too loud by using numbers below 0 eg: as here -800 ,Default value is 0 - lowest value is -10000--> <bgsound src="dreaming.mid" volume="-1500" loop="-1" balance="0"> <!--Scrolling image here--> <img id="pic1" src="sweetdreams.jpg" style="left:-1800px;top:-1800px;position:absolute" width="486" height="316"> <!--Change height here to height of your image plus the border height you specified in the style above - Do not change the width--> <table id="tab1" class="tab" width="100%" height="243"> <tr> <td></td> </tr></table> <div id="mess" class="msg">Text here - Double click to set cursor</div> <script language="vbscript"> '************************************* 'Script by Chuckles. 15th April 2003 'Guess you could say this is my Birthday script. LOL 'Please do not remove these lines. 'Thankyou!!!! '************************************* Dim th, messh, messw, pich, spTop, m SetLocale(en_Us) x=0 y=0 'put height of your scrolling picture here pich=250 'This sets your the gap between the scroll 'image and the text box, and also 'sets the page margin below the text box. 'Should be no more than 100px to look 'best m=20 Sub window_OnLoad() ClearInterval(th) scw=document.body.clientWidth sch=document.body.clientHeight messw=(scw/2)+100 messh=((sch-250)/2)+150 mess.style.width=messw mess.style.height=messh mess.style.posTop=pich+m mess.style.posLeft=(scw/2)-(messw/2) document.body.style.marginbottom=(mess.style.posTop+messh)+m 'hit your tab key after the first" if you want to center your ticker window.status=" ..... SWEET DREAMS .... Stationery by Carol's Creations ..... www.marcodesigns.com .... From the Angel/Fairy Collection ... " document.body.style.overflowx="hidden" tab1.style.backgroundImage="URL("&pic1.src&")" th=SetInterval("scrolltop", 64) End Sub Sub scrolltop() x=x-1 y=y tab1.style.backgroundPosition=x&" "&y End Sub Sub window_onResize() window_onLoad End Sub </script> </body> </html>