Welcome To HTML ZERO's Xanga
HTML ZERO


Other
My Xanga
My Myspace

Subscribe To HTML__0


Cool Things

If you want a link to my Xanga with some picture.




i don't view this anymore

Navigation
Edit
Public profile
Account info
Look & feel
Xanga Skins
Xangazon Settings
Photo Manager
Archive files
Email Posting
Protected Posting
Blocked Users
Setup wizard
Safe Mode

Read
Your Subscriptions
Feedback Log
My Comments
Your Comments
GuestBook

Need help? Click here

html__0
read my profile
sign my guestbook

Visit html__0's Xanga Site!

Name: Josh
Country: United States
State: Houston
Birthday: 6/6/1906
Gender: Male


Interests:
I'd like you to at least show me you respect or show thanks to me by putting this in your Xanga



Expertise: Vote for me... please?


Message: message me
AIM: PsychoMantisDude
Yahoo: neverlovedforoveramonth


Member Since: 4/27/2004

SubscriptionsSites I Read
html________________________0
Shayu

Blogrings
Xanga Coders
previous - random - next

lifes hard. we know. so shut up
previous - random - next


Posting Calendar

|<< oldest | newest >>|
view all weblog archives

Get Involved!

Suggest a link

Recommend to friend

Create a site


Monday, January 07, 2008

hi kids, adults, assholes, & sweethearts. this is an old website which i find very funny now, honestly i'm quite embarrassed by it. i don't check it anymore (also i kind of wanna delete it) so if any of you want me to keep this up, give me a comment & yell at me. if you actually wanna get to know what happened to me, get a life you loser.


sincerely,
this loser



Monday, August 22, 2005

 

I'm actually a giant cucumber.
 also I'm bored, helpful, so whatever

::SOME BASICS!!!!!!::

To put a html code insde you post <<daily news you hand out>> before you put the code in press Edit HTML  here's some basics

to get a picture in  type in <IMG alt="Picture's discription" src="THE PICTURE'S URL">

<P> regular </P>

 <P align=center> center

<P align=right> just type in either left or right.

<BR> not a double skip

<S> to cross something out </S>

<U> underline </U>

<STRONG> bold </STRONG>

Well can't think of anymore right now


Thursday, June 23, 2005

Make all pictures black & white

<STYLE type="text/css">image { FILTER: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);</style>

Enter text into picture

<DIV style="BORDER-RIGHT: .000000 8px solid; PADDING-RIGHT: 4px; BORDER-TOP: .000000 8px solid; PADDING-LEFT: 4px; BACKGROUND-IMAGE: url(URL OF PICTURE!); PADDING-BOTTOM: 1px; BORDER-LEFT: .000000 8px solid; WIDTH: 700px; PADDING-TOP: 1px; BORDER-BOTTOM: .000000 8px solid; BACKGROUND-REPEAT: repeat; HEIGHT: 600px; HIGHT-30: .000000">
TEXT HERE!
</DIV>

Flaming mouse-over

<style type="text/css"> --> a:hover {background:url(http://img.photobucket.com/albums/v414/Shayu/flame11.gif); text-decoration: none;} //--></style>

Black & White media player

<P align=center><embed style="FILTER: xray" src="URL OF SONG/MOVIE"></embed>

Entrance Picture

<!-- begin code provided by createblog.com -->

<script type='text/javascript'>
// intro splash page by micron
// for more xanga scripts and help go to createblog.com

// change this url to an image of your choice
var image = 'ENTER PICTURE HERE';

function enterSite() {
document.getElementById('splash').style.display = 'none';
var content = document.getElementsByTagName("center");
for (var i=0; i<content.length;i++) {
 content[i].style.display = 'block';
}
return false;
}

if (document.title.slice(-10) == 'Xanga Site') {
document.write('</span></center><style type="text/css"> center {display:none;} .image {border:1px solid #dcdcdc;} </style><table height="100%" width="100%" id="splash"><tr><td align="center" valign="middle" style="text-align:center !important;"><a href="#" onclick="return enterSite();"><img src="'+ image +'" border="0" class="image"></a></td></tr></table><center><span>');
}
</script>


<!-- end code provided by createblog.com -->


Monday, January 17, 2005

Remember almost every code here goes in your website stats or custsom header which are located inside of Look & Feel

Also remember before using ANY of these html codes inside of one of your post remember to check Edit HTML  and put it there.

Music Playlist & Control

<object id="darkplayer" codeBase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" type="application/x-oleobject" height="0" standby="Loading Microsoft Windows Media Player components..." width="0" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95">
<param NAME VALUE>
<param NAME="ShowControls" VALUE="0">
<param NAME="ShowStatusBar" VALUE="0">
<param NAME="ShowDisplay" VALUE="0">
<param NAME="DefaultFrame" VALUE="Slide">
<param NAME="Autostart" VALUE="1">
<param NAME="Loop" VALUE="True">
</object>
</p>
<form name="form">
<p style="text-align: center">
<select style="FONT-SIZE: 8pt; BACKGROUND:#000000; WIDTH: 350; COLOR: #FFFFFF; font-face: verdana; height:174" name="playlist" size="1">
<option value="0">Name Of Song #0</option>
<option value="1">Name Of Song #1</option>
<option value="2">Name Of Song #2</option>
<option value="3">Name Of Song #3</option>
</select><br>
<input TYPE="BUTTON" NAME="darkplay" VALUE="play" OnClick="play(document.forms['form'].playlist);">
<input TYPE="BUTTON" NAME="darkpause" VALUE="pause" OnClick="document.darkplayer.pause(); playstate=2;">
<input TYPE="BUTTON" NAME="darkstop" VALUE="stop" OnClick="document.darkplayer.stop(); playstate=2;"></p>
</form>
<script language="JavaScript">
<!--
var playstate = 1;
shuffle = 1; // set to 0 to always play first song in list
// set to 1 to randomly choose the first song to play
// www.xanga.com/Shayu
// unlimited songs, just copy and paste the song line and change the number
songs=new Array();
songs[0]="Name Of URL Of Song #0";
songs[1]="Name Of URL Of Song #1";
songs[2]="Name Of URL Of Song #2";
songs[3]="Name Of URL Of Song #3";
if (shuffle == 1) {
var randsg = Math.floor(Math.random()*songs.length);
document.darkplayer.FileName = songs[randsg];
document.darkplayer.scr = songs[randsg];
document.forms['form'].playlist.options[randsg].selected = true;
}
function play(list) {
if (playstate == 2) {
document.darkplayer.Play();
} else {
var snum = list.options[list.selectedIndex].value
document.darkplayer.FileName = songs[snum];
document.darkplayer.scr = songs[snum];
}
playstate = 1;
}
//-->
</script>

This is what you all wanted just make sure none of you delete anything on it and try not to IM me if you have a question please.

Replace Words

<script type="text/javascript">
function replaceWords()
{
// ***add the words or fragments you wish to replace below
var oldWords = new Array(

"Word That Wants To Be Replaced",
"Word That Wants To Be Replaced",
"Word That Wants To Be Replaced",

"Word That Wants To Be Replaced");


// *** add the replacing words or fragments below
var newWords = new Array(


"New Word",
"New Word",
"New Word",
"New Word");


allTableData = document.getElementsByTagName('td');
allTableHeaders = document.getElementsByTagName('th');
var collections = new Array(allTableData,allTableHeaders);
for (var k = 0; k < collections.length; ++k )
{
for (var i = 0; i < collections[k].length; ++i )
{
if (collections[k][i].innerHTML.indexOf('TABLE') == -1)
{
for ( var n = 0; n < oldWords.length; ++n )
{
var indx = collections[k][i].innerHTML.indexOf(oldWords[n])
while (indx != -1)
{
var replacement = '';
indx = collections[k][i].innerHTML.indexOf(oldWords[n]);
replacement = collections[k][i].innerHTML.replace(oldWords[n], newWords[n]);
if(navigator.userAgent.toLowerCase().indexOf('compatible')>0){collections[k
[i].innerHTML=replacement;//please use supported code at http://help.xanga.com/codes.htm
}
break;
}
}
}
}
}
}
replaceWords();
</script>

Blinking Boxes

<center><script language=JavaScript>
var blinkColors = new Array("#666666","white","black");
var blinkBorderColor = "#222222"
var blinkBorderWidth = 1;
var blinkRows = 1;
var blinkCols = 60;
var blinkWidth = 700;
var blinkRowHeight = 10;
var blinkRate = 8;
st=setTimeout;
document.write("<table id='blinkbox' width='" + blinkWidth +"' border = 0 cellspacing='" + blinkBorderWidth + "' cellpadding=0 bgcolor='" + blinkBorderColor +"'>");
for (r = 0; r < blinkRows; r++){
document.write("<TR>");
for (c = 0; c < blinkCols; c++){
document.write("<TD height='" + blinkRowHeight + "'></TD>");
}
document.write("</TR>");
}
document.write("</table>");
// ... and this makes it blink
function blinkIt() {
changecell = Math.floor(Math.random() * (blinkCols * blinkRows));
changecolor = Math.floor(Math.random() * blinkColors.length);
bb = document.getElementById("blinkbox");
bbtd = bb.getElementsByTagName("td");
bbtd[changecell].style.backgroundColor = blinkColors[changecolor];
st('blinkIt()', blinkRate);
}
blinkIt();
//-->
</script>

Insert Banner

<IMG src=" Put URL For Picture Here" Align="center">

Change EPROP picture

<script language=javascript>
var oldsmileys = new Array('http://www.xanga.com/Images/eProp.gif','http://www.xanga.com/Images/noProp.gif');
var newsmileys = new Array('   Put URL For Picture Here For 2   ','   Put URL For Picture Here   ');
for (var i = 0; i < document.images.length; i++) {
for (var s = 0; s < oldsmileys.length; s++){
if (document.images[i].src == oldsmileys[s]){
newsmiley = document.createElement('img');
newsmiley.src = newsmileys[s];
document.images[i].parentNode.replaceChild(newsmiley, document.images[i]);
break;
}
}
}
</script>

No Right Click With Neverending Pop-ups

<script language="javascript">
document.onmousedown=click
var times=0
var times2=10
function click() {
if ((event.button==2) || (event.button==3)) {
if (times>=1) { bye() }
alert(" First Message Here ");
times++ } }
function bye() {
alert(" Second Message Here ");
bye() }
</script>

Black & White Picture

<IMG src="Put URL For Picture Here" id="GRAY1" border=0 style="align:center;filter:Gray">

Transparent Picture

<IMG src="Put URL For Picture Here" style="filter:alpha(opacity=50)">

Box Around Xanga [Custom Header]

<DIV ID=whatever style="overflow: auto; height: 250px">

Dotted Border

<div style="width: 700px;
BACKGROUND-COLOR: #ffffff; background-image: url(imageurlhe
re.gif); background-attachment: fixed; repeat: no-repeat;
FILTER: alpha(opacity=99);
border: 2px dashed #000000;
height: 100%;
position:static; margin-top: enter a value here">

New Look Of Date

<style type="text/css">
div.blogheader, .caption {
/* edits the dates */
font-family: arial;
text-transform: lowercase;
font-size: 15px;
font-weight: regular;
line-height: 13px;
color: FFFFFF;
letter-spacing: 1px;
background-color: #000000;
text-align: center;
border: 1px solid #000000;
border-width: 1px 1px 1px 1px;
}
</style>

Border Around Xanga With Scrollbar

<TABLE STYLE="position: static;
"BORDER="1"
WIDTH="676"
HEIGHT="400"
bordercolordark="color"
bordercolorlight="color">
<TR><TD>
<DIV id=scroll style="overflow: auto; HEIGHT: 300px">

Left Modules Border

<style>
table.left {border: 1px dotted #COLOR;}
table.left TH {border: 1px dotted #COLOR;}
table.left TD, table.left TR {1px dotted #COLOR;}
searchbarbarborder{ border: 1px dotted #COLOR;}
</style>

Any Size Profile Picture

<script type="text/javascript">
   //
   // Copyright ?004 by EasterEgg.
   //
   // For use at Xanga only.
   //
   // This script allows you to use any online image as a profile pic,
   // regardless of it's size. You're no longer confined to 160 x 160 pixels
   // or the maximum width that the left sidebar allows, since this script
   // will also adjust the width of the left sidebar as you see fit.
   // Random pics will be chosen if you have added more than one profile pic
   // to the array "newProfileImages" below.
   //
   // This script is freeware and can be freely used as long as the copyright
   // notice and the comments in this script remains intact. It is provided
   // 'as is' without guarantees of any kind.
   //
   // The script doesn't work for Mac users...
   //

   // ****************** BEGINNING OF WHAT YOU CAN EDIT ********************

   // ***** Set the width of the image(s). Note that this has no effect in Netscape.
   maxWidth = 250;

   // ***** add as many images as you like to the array below.
   var newProfileImages = new Array(
       "http://www.freestockphotos.com/SCENERY1/BacklitMtns.jpg",
       "http://www.freestockphotos.com/SCENERY1/bmpwin.jpeg",
       "http://www.freestockphotos.com/SKY/BlueClouds2.jpg",
       "http://www.freestockphotos.com/ANIMALS/Bullsnake2.jpg",
       "http://www.freestockphotos.com/ROME1/AgustusCoin.jpg",
       "http://www.freestockphotos.com/EGYPT/Akhenaten.JPG" // <-- !!! no comma after last img!
   );

   // ********************* END OF WHAT YOU CAN EDIT ************************
  
   indexNr = Math.round(Math.random() * (newProfileImages.length));
   if (indexNr == newProfileImages.length)
       indexNr = newProfileImages.length - 1;
      
   newProfilePicURL = newProfileImages[indexNr];
  
   newImage = new Image(maxWidth,0);
   newImage.src = newProfilePicURL;

   var allImages = document.images;

   // rule out Mac users
   if (navigator.userAgent.indexOf('Mac') == -1)
   {
       for ( i = 0; i < allImages.length; ++i )
       {
           if (allImages[i].src.indexOf('profile') != -1)
           {
               allImages[i].src = newProfilePicURL;
               // Netscape doesn't allow adjusting the image width
               if (navigator.userAgent.indexOf('Netscape') == -1)
               {
                   allImages[i].width = newImage.width;
                   newStyle = '<style>table.left { width:' + (newImage.width + 40) + 'px;}</style>';
                   document.write(newStyle);
               }
               break;
           }
       }
   }
</script>

Spaced Out Mouseover

<style type="text/css"><!-- a:hover{letter-spacing:5px} //--></style>

Curser That Says I Love You[Website Stats]

<!-- begin code provided by createblog.com -->
<STYLE TYPE="text/css">p {align=justify}
BODY{cursor: url(http://www3.telus.net/public/estamacy/cursor.cur);}
a {cursor: url(http://www3.telus.net/public/estamacy/cursor.cur);}
</STYLE>
<!-- end code provided by createblog.com -->

 

Add video

<embed name="RAOCXplayer" src="_URL Here_" width="320" ShowControls="1" ShowStatusBar="0" AutoSize="false" EnableContextMenu="0" DisplaySize="0"></embed>



Mehh another problem on this one... for some reason from what I know it doesn't play mpegs


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



H
T
M
L

If you want this^ here's the code

<marquee direction=up scrollAmount=0scrollDelay=0 style="filter:wave(add=10,phase=1,freq=2,strength=35)" width=100 height=225><font style="font-family:comic sans ms;font-size:20px;color:#FFFFFF"><center><b><br><br>H<br>T<br>M<br>L<br><br></font></marquee>

Adjust the size of "sites I read"

<script type="text/javascript">
// (c)2003 EasterEgg, http://www.xanga.com/easteregg
// updated: August 24, 2003
// A simple script to adjust the height of your Xanga's SIR-list
function adjustSirListHeight()
{
    // *** define the height of your SIR-list in the line below
    var sirListHeight = '250px';
    var allTables = document.getElementsByTagName('tbody');
    for (i=4; i < allTables.length; ++i)
    {
        if ((allTables[i].innerHTML.indexOf('SubscribeTo.aspx') != -1) &&
            (allTables[i].innerHTML.toUpperCase().indexOf('<TABLE') == -1))
        {
            sirlist = allTables[i].lastChild;
            temp = sirlist.firstChild.innerHTML;
            sirlist.removeChild(sirlist.firstChild);
            td = document.createElement('td');
            div = document.createElement('div');
            div.style.width = '190px';
            div.style.height = sirListHeight;
            div.style.overflow = 'auto';
            div.innerHTML = temp;
            td.appendChild(div);
            sirlist.appendChild(td);
            break;
        }
    }
}
if (navigator.userAgent.indexOf('Mac') == -1)
    if ((document.URL.indexOf('weblogs') == -1) &&
        (document.URL.indexOf('guestbook') == -1) &&
        (document.URL.indexOf('events') == -1) &&
        (document.URL.indexOf('reviews') == -1))
        adjustSirListHeight();
</script>

Status Bar Message (Caps)

<script language="Javascript">
<!--
var text  = "MESSAGE HERE"
var speed = 200

var x = 0

function bb() {

var a = text.substring(0,x)
var b = text.substring(x,x+1).toUpperCase()
var c = text.substring(x+1,text.length)

window.status = a + b + c

if (x == text.length) {
x = 0
}

else {
x++
}

setTimeout("bb()",speed)
}

bb();
file://-->
</script>

Change words

<script type="text/javascript">
//
// ©2003 EasterEgg, http://www.xanga.com/easteregg
// Changes date text
// For use at Xanga only.
//
// Info at http://dorkette.net
//

function replaceWordsDates()
{
    // ***add the Months or Days you wish to replace below
    var oldWordsDates = new Array(
        "January",
        "February",
        "March",
        "April",
        "May",
        "June",
        "July",
        "August",
        "September",
        "October",
        "November",
        "December",
        "Monday",
        "Tuesday",
        "Wednesday",
        "Thursday",
        "Friday",
        "Saturday"
 );

    // *** add the replacing Months or Days below
    var newWordsDates = new Array(
        "Jan",
        "Feb",
        "Mar",
        "Apr",
        "May",
        "Jun",
        "Jul",
        "Aug",
        "Sep",
        "Oct",
        "Nov",
        "Dec",
        "Mon",
        "Tue",
        "Wed",
        "Thu",
        "Fri",
        "Sat"
 );

    allDivData = document.getElementsByTagName('div');
       
    var collections = new Array(allDivData);
   
    for (var k = 0 ; k < collections.length ; ++k )
    {
        for (var i = 0 ; i < collections[k].length ; ++i )
        {  
            if (collections[k][i].innerHTML.indexOf('DIV') == -1)
            {
                for ( var n = 0 ; n < oldWordsDates.length; ++n )
                {
                    var indx = collections[k][i].innerHTML.indexOf(oldWordsDates[n])
                    while (indx != -1)
                 %3
</Script>

Blurred Links

<style type="text/css">
/*
Blurred Hyperlinks - xanga.com/add_ons
- use only 45, 90, 135, 180, 225, 270, 315, or 360 for DIRECTION
- STRENGTH means the blur power
- do not change or remove HEIGHT:0 and add="0"
*/
a:hover {filter:blur(add="0",direction="90",strength="7"); height:0;};
</style>

This is to have alternate background for your comments.

<script language="javascript">
/*
colorComments
by Sean F
http://www.xanga.com/seanmeister
this script will display your reader comments
in alternating background colors. Paste the code
into the Website Stats section of your Xanga Look
& Feel settings. Change the values of bg1 and bg2
to customize.
*/
function colorComments(){
var bg1="#FFFFFF";
var bg2="#FCEBFF";
var sw=0;
var attname = document.all ? "class"+"Name" : "class";
var ctables = document.getElementsByTagName("table");
for (var cn=0; cn < ctables.length; cn++){
if (ctables[cn].getAttribute(attname) == "blogbody"){
sw = sw == 1 ? 0 : 1;
ctables[cn].style.backgroundColor = sw == 1 ? bg1 : bg2;
}}}
if ( .href.indexOf("item.aspx") != -1) colorComments();
</script>

This is to get falling hearts.

<SCRIPT language=JavaScript1.2>
<!-- Begin
var no = 20; // snow number
var speed = 28; // smaller number moves the snow faster
var snowflake= "http://www.yedpa.net/4/Gif/hearts.gif";

var ns4up = (document.layers) ? 1 : 0;  // browser sniffer
var ie4up = (document.all) ? 1 : 0;
var dx, xp, yp;    // coordinate and position variables
var am, stx, sty;  // amplitude and step variables
var i, doc_width = 800, doc_height = 900;
if (ns4up) {
doc_width = self.innerWidth;
doc_height = self.innerHeight;
} else if (ie4up) {
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
dx = new Array();
xp = new Array();
yp = new Array();
am = new Array();
stx = new Array();
sty = new Array();
for (i = 0; i < no; ++ i) { 
dx[i] = 0;                        // set coordinate variables
xp[i] = Math.random()*(doc_width-50);  // set position variables
yp[i] = Math.random()*doc_height;
am[i] = Math.random()*20;         // set amplitude variables
stx[i] = 0.02 + Math.random()/10; // set step variables
sty[i] = 0.7 + Math.random();     // set step variables
if (ns4up) {                      // set layers
if (i == 0) {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" ");
document.write("top=\"15\" visibility=\"show\"><img src=\"");
document.write(snowflake + "\" border=\"0\"></layer>");
} else {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" ");
document.write("top=\"15\" visibility=\"show\"><img src=\"");
document.write(snowflake + "\" border=\"0\"></layer>");
   }
} else if (ie4up) {
if (i == 0) {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
document.write("visible; TOP: 15px; LEFT: 15px;\"><img src=\"");
document.write(snowflake + "\" border=\"0\"></div>");
} else {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
document.write("visible; TOP: 15px; LEFT: 15px;\"><img src=\"");
document.write(snowflake + "\" border=\"0\"></div>");
      }
   }
}
function snowNS() {  // Netscape main animation function
for (i = 0; i < no; ++ i) {  // iterate for every dot
yp[i] += sty[i];
if (yp[i] > doc_height-50) {
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = 0;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
doc_width = self.innerWidth;
doc_height = self.innerHeight;
}
dx[i] += stx[i];
document.layers["dot"+i].top = yp[i];
document.layers["dot"+i].left = xp[i] + am[i]*Math.sin(dx[i]);
}
setTimeout("snowNS()", speed);
}
function snowIE() {  // IE main animation function
for (i = 0; i < no; ++ i) {  // iterate for every dot
yp[i] += sty[i];
if (yp[i] > doc_height-50) {
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = 0;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
dx[i] += stx[i];
document.all["dot"+i].style.pixelTop = yp[i];
document.all["dot"+i].style.pixelLeft = xp[i] + am[i]*Math.sin(dx[i]);
}
setTimeout("snowIE()", speed);
}
if (ns4up) {
snowNS();
} else if (ie4up) {
snowIE();
}
// End -->
</SCRIPT>

I'm not sure why but the falling hearts only work in the reviews and event for example check out where it says "stuff" near the top of the screen.

No Highlighting:

Highlight Refresh

<body onselectstart="location= ;return false">

Highlight w/e Popup

<body ONCONTEXTMENU="alert(&# "MESSAGE HERE" `); return false;">

Merlin


<!--Merlin : : By Blogring.net -->
<Object ID=tsaiannie53441 ClassID=CLSID:D45FD31B-5C6E-11D1-9EC1-00C04FD7081F></Object>
<script language="JavaScript">
var RoverID;
var RoverACS;
tsaiannie53441.Connected = true;
RoverLoaded = LoadLocalAgent(RoverID, RoverACS);
Rover = tsaiannie53441.Characters.Character(RoverID);
Rover.Show();
<!--Blogring.net -->
//Play is the actions of merlin while speak is what he will say
Rover.Speak("TEXT");
Rover.Speak("TEXT");
Rover.Speak("TEXT");
Rover.Speak("TEXT");
Rover.Hide();
<!--brnet-->
function LoadLocalAgent(CharID, CharACS) {
LoadReq = tsaiannie53441.Characters.Load(CharID, CharACS);
return(true);
}
</script>
<!--End Merlin : : By Blogring.net -->

No Highlighting

<BODY ONCONTEXTMENU="return false">

Comments: I don't usually prefer to use these, but some people want it.

Marquees:

Up and Down

<MARQUEE behavior=alternate direction=up scrollAmount=3 width="80" height="20">text here</MARQUEE>

text here

Left or Right

<MARQUEE direction="left" width="80">text here</MARQUEE>


text here

Up

<MARQUEE direction=up>text here</MARQUEE>

text here

Down

<MARQUEE direction=down>text here</MARQUEE>

text here

Random

<marquee behavior=alternate><marquee width="100">Text Here</marquee></marquee>

Text Here

Marquee arrows

<MARQUEE scrollAmount=3 behavior=alternate width="4%"><FONT face=Webdings size=3>4</FONT></MARQUEE>
<MARQUEE scrollAmount=1 width="3%"><FONT size=3>| | |</FONT></MARQUEE>TEXT</FONT></B><FONT size=3>
<MARQUEE scrollAmount=1 direction=right width="3%">| | |</MARQUEE>
<MARQUEE scrollAmount=3 direction=right behavior=alternate width="4%"><FONT face=Webdings size=3>3</FONT></MARQUEE>

4 | | |Text | | | 3

Xanga Link Replace:

<script type="text/javascript">
//
// 2003 EasterEgg, http://www.xanga.com/easteregg
//
// For use at Xanga only.
//
// This script replaces any given word or text fragment with
// whatever you want: new words and fragments, or even HTML!
//
// Actually it's pretty simple: add the words or fragments you
// wish to replace to the array "oldWords" (each word placed
// between double quotation marks, and separated by colons as you
// can see below) and add their replacements to the array "newWords",
// at the same position as the original words in "oldWords".
// The example is pretty self-explaining.
//
// The script is case sensitive, meaning that if you add "something"
// to "oldWords" array it will not recognize "SOMETHING", or "SoMetHInG".
//
// You can adjust the existing arrays in this code as you see fit,
// as long as both arrays keep the same size (same amount of words
// in both arrays), otherwise a script error will occur.
//
// Copy this entire code and paste in the webstats box at your
// Look and Feel page.
//
// You're free to use this script as long as this comment remains intact,
// and as long you won't use it to cripple the comments of your visitors;
// after all, no one likes his/her words getting twisted...
//

function replaceWords()
{
    // ***add the words or fragments you wish to replace below
    var oldWords = new Array(
        "Sites I Read",
        "Gender:",
        "Birthday:",
        "My Blogrings",
        "eprop",
        "comment"
 );

    // *** add the replacing words or fragments below
    var newWords = new Array(
        "Dailies:",
        "Gender:",
        "B-Day:",
        "Recommended Sites",
        "cent",
        "dollar"
 );

    allTableData = document.getElementsByTagName('td');
    allTableHeaders = document.getElementsByTagName('th');
       
    var collections = new Array(allTableData,allTableHeaders);
   
    for (var k = 0 ; k < collections.length ; ++k )
    {
        for (var i = 0 ; i < collections[k].length ; ++i )
        {  
            if (collections[k][i].innerHTML.indexOf('TABLE') == -1)
            {
                for ( var n = 0 ; n < oldWords.length; ++n )
                {
                    var indx = collections[k][i].innerHTML.indexOf(oldWords[n])
                    while (indx != -1)
                    {  
                        var replacement = '';
                        indx = collections[k][i].innerHTML.indexOf(oldWords[n]);
                        replacement = collections[k][i].innerHTML.replace(oldWords[n], newWords[n]);
                        collections[k][i].innerHTML = replacement;
                        break;                   
                    }
                }
            }
        }
    }
}
replaceWords();
</script>

Note: You have to change the new words in the order as the old words.

Scrollbar:

Scrollbar Color

<style type="text/css">
    body {scrollbar-3dlight-color:;
           scrollbar-arrow-color:;
           scrollbar-track-color:;
           scrollbar-darkshadow-color:;
           scrollbar-face-color:;
           scrollbar-highlight-color:;
           scrollbar-shadow-color:}
  </style>

Scrollbar w/ Cursor Change

<STYLE TYPE="text/css"><!--BODY {color: black;cursor: sw-resize;scrollbar-face-color: white; scrollbar-shadow-color: #999999; scrollbar-highlight-color: white; scrollbar-3dlight-color: #999999; scrollbar-darkshadow-color: white; scrollbar-track-gray: black; scrollbar-arrow-color: #999999;}--></STYLE>

Note: I bolded and underlined the cursor change part, so if you want to change both scrollbar and cursor, here you go.

Cursor Styles

Styles: hand, help, crosshair, text, vertical-text, wait, move, n-resize, s-resize, w-resize, e-resize, nw-resize, sw-resize, se-resize, ne-resize, col-resize, row-resize, all-scroll, no-drop, not-allowed, pointer, auto, default

Page Faders (These are how it looks when you enter or leave a page):

Star

<meta http-equiv=Page-Enter
content=progid:DXImageTransform.Microsoft.Iris(duration=2,irisStyle=star)>
<meta http-equiv=Page-Exit
content=progid:DXImageTransform.Microsoft.Iris(duration=2,irisStyle=star)>

Gradient

<meta http-equiv=Page-Enter
content=progid:DXImageTransform.Microsoft.GradientWipe(duration=2)>
<meta http-equiv=Page-Exit
content=progid:DXImageTransform.Microsoft.GradientWipe(duration=2)>

Blur

<meta http-equiv=Page-Enter
content=progid:DXImageTransform.Microsoft.Pixelate(MaxSquare=50, Duration=4)>
<meta http-equiv=Page-Exit
content=progid:DXImageTransform.Microsoft.Pixelate(MaxSquare=50, Duration=4)>

Title Bar Message:

Title Bar Message (Changing Text of Title)

<script language="JavaScript">
document.title = "NEW TITLE HERE"</script>

Title Bar Message (Surroundings Move)

</script>
</td></tr></table><br /><br /><SCRIPT>
    var titletext="Type Here for middle text"
    var thetext=""
    var started=false
    var step=0
    var times=1

    function welcometext()
    {
      times--
      if (times==0)
      {
        if (started==false)
        {
          started = true;
          document.title = titletext;
          setTimeout("anim()",1);
        }
        thetext = titletext;
      }
    }

    function showstatustext(txt)
    {
      thetext = txt;
      setTimeout("welcometext()",4000)
      times++
    }

    function anim()
    {
      step++
      if (step==20) {step=1}

      if (step==1) {document.title='][----  '+thetext+'  ----]['}
      if (step==2) {document.title='-][---  '+thetext+'  ---][-'}
      if (step==3) {document.title='--][--  '+thetext+'  --][--'}
      if (step==4) {document.title='---][-  '+thetext+'  -][---'}
      if (step==4) {document.title='----][  '+thetext+'  ][----'}
 
      setTimeout("anim()",200);
    }

if (document.title)
window.onload=onload=welcometext
</SCRIPT>

Note: You can change the middle text and where it says step1, step 2, step 3, and step 4. And you can add steps too. Just copy and paste that whole line, and change it to step 5.

 

Status Bar Message:

Status Bar Message (Only 1 Message)

<script language="JavaScript">

  var message = "MESSAGE HERE";
  var speed = 75;
  var forward = true;

  function bounce(){
    if (forward) {
      message = " " + message;
      forward = ((message.length > 120) ? false : true);
    } else {
      if (message.charAt(0) == ' ') {
        message = message.substring(1, message.length);
      } else {
        forward = true;
      }
    }
    window.status = message;
    setTimeout("bounce()", speed);
  }

  bounce();

  // end hide -->
</script>

Status Bar Message (Multiple Messages)

<script language=Javascript>
<!--
function initArray() {
this.length = initArray.arguments.length;
  for (var i = 0; i < this.length; i++) {
  this[i] = initArray.arguments[i];
  }
}
var text  = new initArray(
"MESSAGE 1 HERE",
"MESSAGE 2 HERE",
"MESSAGE 3 HERE",
"MESSAGE 4 HERE",
"MESSAGE 5 HERE");
var speed = 70;
var speed2 = 780;
var whereat = 0;
var whichone = 0;
function waveb() {
var befor = text[whichone].substring(0,whereat);
var wave = text[whichone].substring(whereat,whereat+1).toUpperCase();
window.status = befor + wave;
if (whereat == text[whichone].length) {
  whereat = 0;
  ++whichone;
  if (whichone == text.length) whichone = 0;
  setTimeout("waveb()",speed2);
}
else {
  whereat++;
  setTimeout("waveb()",speed);
}
}
waveb();
//-->
</script>

Status Bar Message (Caps)

<script language="Javascript">
<!--
var text  = "MESSAGE HERE"
var speed = 200

var x = 0

function bb() {

var a = text.substring(0,x)
var b = text.substring(x,x+1).toUpperCase()
var c = text.substring(x+1,text.length)

window.status = a + b + c

if (x == text.length) {
x = 0
}

else {
x++
}

setTimeout("bb()",speed)
}

bb();
//-->
</script>

Pop Ups:

Entering

<script language="JavaScript">alert("MESSAGE HERE")
</script>

Exiting

<body onUnload="alert('MESSAGE HERE');">

Note: You can make as much of these as you want.

No Right Clicking:

Shake n' Pop Up

<script language="JavaScript">
<!--
//// dont right click
function click() {
if (event.button==2) {
window.moveTo(0, 0)
window.moveTo(1, 1)
window.moveTo(2, 2)
window.moveTo(3, 3)
window.moveTo(4, 4)
window.moveTo(5, 5)
window.moveTo(6, 6)
window.moveTo(7, 7)
window.moveTo(8, 8)
window.moveTo(9, 9)
window.moveTo(10, 10)
window.moveTo(9, 9)
window.moveTo(8, 8)
window.moveTo(7, 7)
window.moveTo(6, 6)
window.moveTo(5, 5)
window.moveTo(4, 4)
window.moveTo(3, 3)
window.moveTo(2, 2)
window.moveTo(1, 1)
window.moveTo(0, 0)
window.moveTo(1, 1)
window.moveTo(2, 2)
window.moveTo(3, 3)
window.moveTo(4, 4)
window.moveTo(5, 5)
window.moveTo(6, 6)
window.moveTo(7, 7)
window.moveTo(8, 8)
window.moveTo(9, 9)
window.moveTo(10, 10)
window.moveTo(9, 9)
window.moveTo(8, 8)
window.moveTo(7, 7)
window.moveTo(6, 6)
window.moveTo(5, 5)
window.moveTo(4, 4)
window.moveTo(3, 3)
window.moveTo(2, 2)
window.moveTo(1, 1)
window.moveTo(0, 0)
window.moveTo(1, 1)
window.moveTo(2, 2)
window.moveTo(3, 3)
window.moveTo(4, 4)
window.moveTo(5, 5)
window.moveTo(6, 6)
window.moveTo(7, 7)
window.moveTo(8, 8)
window.moveTo(9, 9)
window.moveTo(10, 10)
window.moveTo(9, 9)
window.moveTo(8, 8)
window.moveTo(7, 7)
window.moveTo(6, 6)
window.moveTo(5, 5)
window.moveTo(4, 4)
window.moveTo(3, 3)
window.moveTo(2, 2)
window.moveTo(1, 1)
window.moveTo(0, 0)
window.moveTo(50, 50)
window.moveTo(55, 55)
window.moveTo(60, 60)
window.moveTo(100, 100)
window.moveTo(5000, 5000)
alert('MESSAGE HERE')}
}
document.onmousedown=click

// --></script>

No Right Click Refresh (1 Message Only)

<BODY oncontextmenu=`alert("MESSAGE HERE");window.event.returnValue=false`>
<BR>

No Right Click w/ Pop Up

<BODY oncontextmenu=`alert("MESSAGE HERE");window.event.returnValue=false`>

Ex: Try Right Clicking

No Right Click & Redirect (Goes To Another Page)

<BODY oncontextmenu=`alert("MESSAGE");location.replace("TYPE SITE YOU WANT TO BE REDIRECTED HERE");status=("MESSAGE 2");return false;` onselectstart="return false" ondragdrop="return false"; background=personalpage_files/404.htm topMargin=0>

Rainbow Mouseover

<script language="JavaScript1.2">
<!--Source for Rainbow.js-->
var rate = 75; // Increase amount(The degree of the transmutation)


////////////////////////////////////////////////////////////////////
// Main routine

var obj; // The object which event occured in
var act = 0; // Flag during the action
var elmH = 0; // Hue
var elmS = 128; // Saturation
var elmV = 255; // Value
var clrOrg; // A color before the change
var TimerID; // Timer ID


if (navigator.appName.indexOf("Microsoft",0) != -1 && parseInt(navigator.appVersion) >= 4) {
Browser = true;
} else {
Browser = false;
}

if (Browser) {
document.onmouseover = doRainbowAnchor;
document.onmouseout = stopRainbowAnchor;
}


//=============================================================================
// doRainbow
// This function begins to change a color.
//=============================================================================
function doRainbow()
{
if (Browser && act != 1) {
act = 1;
obj = event.srcElement;
clrOrg = obj.style.color;
TimerID = setInterval("ChangeColor()",100);
}
}


//=============================================================================
// stopRainbow
// This function stops to change a color.
//=============================================================================
function stopRainbow()
{
if (Browser && act != 0) {
obj.style.color = clrOrg;
clearInterval(TimerID);
act = 0;
}
}


//=============================================================================
// doRainbowAnchor
// This function begins to change a color. (of a anchor, automatically)
//=============================================================================
function doRainbowAnchor()
{
if (Browser && act != 1) {
obj = event.srcElement;

while (obj.tagName != 'A' && obj.tagName != 'BODY') {
obj = obj.parentElement;
if (obj.tagName == 'A' || obj.tagName == 'BODY')
break;
}

if (obj.tagName == 'A' && obj.href != '') {
act = 1;
clrOrg = obj.style.color;
TimerID = setInterval("ChangeColor()",100);
}
}
}


//=============================================================================
// stopRainbowAnchor
// This function stops to change a color. (of a anchor, automatically)
//=============================================================================
function stopRainbowAnchor()
{
if (Browser && act != 0) {
if (obj.tagName == 'A') {
obj.style.color = clrOrg;
clearInterval(TimerID);
act = 0;
}
}
}


//=============================================================================
// Change Color
// This function changes a color actually.
//=============================================================================
function ChangeColor()
{
obj.style.color = makeColor();
}


//=============================================================================
// makeColor
// This function makes rainbow colors.
//=============================================================================
function makeColor()
{
// Don't you think Color Gamut to look like Rainbow?

// HSVtoRGB
if (elmS == 0) {
elmR = elmV; elmG = elmV; elmB = elmV;
}
else {
t1 = elmV;
t2 = (255 - elmS) * elmV / 255;
t3 = elmH % 60;
t3 = (t1 - t2) * t3 / 60;

if (elmH < 60) {
elmR = t1; elmB = t2; elmG = t2 + t3;
}
else if (elmH < 120) {
elmG = t1; elmB = t2; elmR = t1 - t3;
}
else if (elmH < 180) {
elmG = t1; elmR = t2; elmB = t2 + t3;
}
else if (elmH < 240) {
elmB = t1; elmR = t2; elmG = t1 - t3;
}
else if (elmH < 300) {
elmB = t1; elmG = t2; elmR = t2 + t3;
}
else if (elmH < 360) {
elmR = t1; elmG = t2; elmB = t1 - t3;
}
else {
elmR = 0; elmG = 0; elmB = 0;
}
}

elmR = Math.floor(elmR);
elmG = Math.floor(elmG);
elmB = Math.floor(elmB);

clrRGB = '#' + elmR.toString(16) + elmG.toString(16) + elmB.toString(16);

elmH = elmH + rate;
if (elmH >= 360)
elmH = 0;

return clrRGB;
}

</script>

Underline and Overline (Hover my links)

<style type="text/css"><!-- a:hover{text-decoration: underline overline;cursor:e-resize}
a:hover: color:#ffffff strength=3;height:0px;width:inherit //--></style>

Note: You can change the hovering cursor as anything else. (ex: ne-resize, e-resize, se-resize, etc.)






<bgsound src="http://www.angelfire.com/planet/enonmusicohgr/List.mp3" loop="infinite">