View Full Version : Moving Title Or Whatever It's Called Help!


KoOkAi_07
02-05-2005, 02:44 AM
what's the scripts of moving titles? you can see an example of what i'm sayin'here (http://calibeibi.blogspot.com). and also the scripts for moving window display status. the one on the bottom. thankx! :)

Dude128
02-05-2005, 03:18 AM
View > Source

the credit is there if you want to go to the site the codes came from.

KoOkAi_07
02-05-2005, 04:32 AM
huh? don't get it.

kittycat
02-05-2005, 05:02 AM
<SCRIPT>
var repeat=1 //enter 0 to not repeat scrolling after 1 run, othersise, enter 1
var title=document.title
var leng=title.length
var start=1
function titlemove() {
titl=title.substring(start, leng) + title.substring(0, start)
document.title=titl
start++
if (start==leng+1) {
start=0
if (repeat==0)
return
}
setTimeout("titlemove()",140)
}
if (document.title)
titlemove()
</SCRIPT>
and
<script>
window.defaultStatus=" *Wake up one day to find your world in full color & yourself wrapped in all its splendor... just imagine* ";
</script>
Put them between <head> and </head>

Dude128
02-05-2005, 05:11 AM
huh? don't get it.
click view. click source. read. the URL from which the script came is in there, or you could just copy and paste the code...

KoOkAi_07
02-05-2005, 05:18 AM
where will i type my title? the one i want to move.

KoOkAi_07
02-05-2005, 05:29 AM
and also. i want the botoom one to move.

tokyo bleu
02-05-2005, 07:58 AM
and also. i want the botoom one to move.

Status bar scrolling text?

<SCRIPT LANGUAGE="JavaScript">
//Don't Erase Them!!!
//1997 By Createc Studio
//Original From: Twinsen Chan
//E-mail: Jcatchan@netvigator.com
//You don't need to
//If you just want to get the scrolling text, but not the speed controls, simply copy from here


var source='TEXT';


var sourcelen=source.length;
var window_width=150;
var position=1-window_width;
var speed=40;
//To here(continued)

function slower() {
speed += 10;
}

function faster() {
if (speed >= 0) {
speed -= 10;
}
}

//Copy here(continued)
function scrolling() {
position++;
var scrolltxt="";
var lensource=scrolltxt.length;
if (position==lensource) {
position=1-window_width;
}
if (position<0) {
for (var i=1; i <= Math.abs(position); i++) {
scrolltxt=scrolltxt+' ';}
scrolltxt=scrolltxt+source.substring(0,window_widt h - i + 1);
}
else {
scrolltxt=scrolltxt+sourcetext.substring(position, window_width+position);
}
window.status=scrolltxt;
setTimeout ("scrolling()",speed);
}
//To here(end)
</SCRIPT>

kittycat
02-05-2005, 06:30 PM
where will i type my title? the one i want to move.

<title>your title</title>
Same as on a normal page

KoOkAi_07
02-06-2005, 03:03 AM
i can't make it work. i don't know why... :( i'll just post my html codes so someone can help me.

<html>
<head>
<title>~Badtz Maru~</title>
<script name='Javascript'>
<!--
function right( val ) {
if (navigator.appName == 'Netscape' && (val.which
== 3 || val.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet
Explorer' &&
(event.button == 2 || event.button == 3)) {
alert("whyyy");
return false;
}
return true;
}
document.onmousedown = right;
document.onmouseup = right;
if (document.layers) window.captureEvents(Event.
MOUSEDOWN);
if (document.layers) window.captureEvents(Event.
MOUSEUP);
window.onmousedown = right;
window.onmouseup = right;
//-->
</script>
<SCRIPT>
var repeat=1 //enter 0 to not repeat scrolling after 1
run, othersise, enter 1
var title=document.title
var leng=title.length
var start=1
function titlemove() {
titl=title.substring(start, leng) + title.substring(0,
start)
document.title=titl
start++
if (start==leng+1) {
start=0
if (repeat==0)
return
}
setTimeout("titlemove()",140)
}
if (document.title)
titlemove()
</SCRIPT>



<script language="JavaScript" type="text/javascript"> <!--
// No rightclick script v.2.5
// (c) 1998 barts1000
// barts1000@aol.com
// This script and others available free at http://www.lissaexplains.com


var message="Oops!\n\nNo right click allowed.\n\nContents & Graphics Copyright ŠK-M-I-A-O.\n\nMy work is not Public Domain, and should NOT be taken from this site."; // Message for the alert box

// Don't edit below!

function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// --> </script>
<script type="text/javascript" src="http://www.haloscan.com/load/kookai07"> </script>

<style type="text/css">

A:link { text-decoration: none; color: #ffffff;}
A:visited { text-decoration: none; color: #FFffff;}
A:hover { font-family: Verdana;font-size: 10px;font-weight: bold;color: #FFffff;text-decoration: none}

none;cursor:pointer;cursor:hand;}


div {
text-decoration: none;
color:#ffffff;
font-size:10px;
font-family: Verdana;
text-align:justify;
scrollbar-face-color:#ffffff;
scrollbar-arrow-color:#000000;
scrollbar-shadow-color:#000000;
scrollbar-highlight-color:#000000;
scrollbar-3dlight-color:##000000;
scrollbar-darkshadow-color:#000000;
scrollbar-track-color:#000000;
}



body {
scrollbar-face-color:#ffffff;
scrollbar-arrow-color:#000000;
scrollbar-shadow-color:#000000;
scrollbar-highlight-color:#000000;
scrollbar-3dlight-color:##000000;
scrollbar-darkshadow-color:#000000;
scrollbar-track-color:#000000;
font-size:10px;
font-family: Verdana;
color:#000000;
text-align:justify;
cursor: crosshair;
}


</style>

</head>

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

help please! i just posted my html codes 'till the head part. i hope that's ok. :rolleyes:

KoOkAi_07
02-06-2005, 03:09 AM
<html>
<head>
<title>~Badtz Maru~</title>
<script name='Javascript'>
<!--
function right( val ) {
if (navigator.appName == 'Netscape' && (val.which
== 3 || val.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet
Explorer' &&
(event.button == 2 || event.button == 3)) {
alert("whyyy");
return false;
}
return true;
}
document.onmousedown = right;
document.onmouseup = right;
if (document.layers) window.captureEvents(Event.
MOUSEDOWN);
if (document.layers) window.captureEvents(Event.
MOUSEUP);
window.onmousedown = right;
window.onmouseup = right;
//-->
</script>
<SCRIPT>
var repeat=1 //enter 0 to not repeat scrolling after 1
run, othersise, enter 1
var title=document.title
var leng=title.length
var start=1
function titlemove() {
titl=title.substring(start, leng) + title.substring(0,
start)
document.title=titl
start++
if (start==leng+1) {
start=0
if (repeat==0)
return
}
setTimeout("titlemove()",140)
}
if (document.title)
titlemove()
</SCRIPT>



<script language="JavaScript" type="text/javascript"> <!--
// No rightclick script v.2.5
// (c) 1998 barts1000
// barts1000@aol.com
// This script and others available free at http://www.lissaexplains.com


var message="Oops!\n\nNo right click allowed.\n\nContents & Graphics Copyright ŠK-M-I-A-O.\n\nMy work is not Public Domain, and should NOT be taken from this site."; // Message for the alert box

// Don't edit below!

function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// --> </script>
<script type="text/javascript" src="http://www.haloscan.com/load/kookai07"> </script>

<style type="text/css">

A:link { text-decoration: none; color: #ffffff;}
A:visited { text-decoration: none; color: #FFffff;}
A:hover { font-family: Verdana;font-size: 10px;font-weight: bold;color: #FFffff;text-decoration: none}

none;cursor:pointer;cursor:hand;}


div {
text-decoration: none;
color:#ffffff;
font-size:10px;
font-family: Verdana;
text-align:justify;
scrollbar-face-color:#ffffff;
scrollbar-arrow-color:#000000;
scrollbar-shadow-color:#000000;
scrollbar-highlight-color:#000000;
scrollbar-3dlight-color:##000000;
scrollbar-darkshadow-color:#000000;
scrollbar-track-color:#000000;
}



body {
scrollbar-face-color:#ffffff;
scrollbar-arrow-color:#000000;
scrollbar-shadow-color:#000000;
scrollbar-highlight-color:#000000;
scrollbar-3dlight-color:##000000;
scrollbar-darkshadow-color:#000000;
scrollbar-track-color:#000000;
font-size:10px;
font-family: Verdana;
color:#000000;
text-align:justify;
cursor: crosshair;
}


</style>

</head>

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

help please! i just posted my html codes 'till the head part. i hope that's ok. :rolleyes: