Description : go to preview n look @ status bar
preview just to show the effect
[color=blue][b]i'm not using it in friendster account at all[/color][/b]
all credits are written in script
thanks to javascript collector v1.1
[li]Bounce Status Bar[/li]
[spoiler]
// thanks to
www.umairanwer.tk
//EDIT THIS PART
var kidjokerwords = "* rewrote by Kiddy - The Joker *";
//NOTHING TO EDIT BELOW or YOU MAY EDIT WITH KNOWLEDGE
var buffer1=" ";
var buffer2=" ";
var message1=buffer1+kidjokerwords+buffer2;
var dir = "left";
var speed = 75;
function pingpong()
{
if (dir == "left")
{
message2=message1.substring(2,message1.length)+" ";
window.status=message2;
setTimeout("pingpong();",speed);
message1=message2;
if (message1.substring(0,1) == "*") dir="right";
}
else
{
message2=" "+message1.substring(0,message1.length-2);
window.status=message2;
setTimeout("pingpong();",speed);
message1=message2;
if (message1.substring(message1.length-1,message1.length) == "*") dir="left";
}
}
pingpong();
[/spoiler]
preview :
http://latansa.talk-forums.com/Bounce-h1.html
[li]Typewriter Status Bar[/li]
[spoiler]
/*
http://www.geocities.com/CollegePark/Quad/3400
http://javacentral.home.ml.org
http://www.page4life.nl/javacentral/index.htm
*/
// JANGAN MENGHAPUS TANDA ( ^ ) , KALAU TERHAPUS, SCRIPT TIDAK AKAN BERJALAN
// DON'T REMOVE SIGN ( ^ )
// EDIT THIS PART
message = "Ini contoh dari typewriter status bar | this is the preview of typewriter status bar^" +
"Kalian bisa menambah atau mengurangi kalimat-kalimat ini^" +
"Asalkan tidak menghapus tanda kutip^" +
"Created by Michiel Steendam^" +
"Rewrite by Kiddy - The Joker^" +
"^"
scrollSpeed = 25
lineDelay = 1500
// Do not change the text below //
txt = ""
function scrollText(pos) {
if (message.charAt(pos) != '^') {
txt = txt + message.charAt(pos)
status = txt
pauze = scrollSpeed
}
else {
pauze = lineDelay
txt = ""
if (pos == message.length-1) pos = -1
}
pos++
setTimeout("scrollText('"+pos+"')",pauze)
}
scrollText(0)
[/spoiler]
http://latansa.talk-forums.com/typewriter-style-h3.html
[li]Clock Status Bar[/li]
[spoiler]
//thanks to
www.ACJavascripts.com
function clock(){
var now = new Date()
var Hours = now.getHours()
var Min = now.getMinutes()
var Sec = now.getSeconds()
A = " *am"
if(Hours>12){
A=" *pm"
Hours=Hours-12
}
if(Hours==0)
Hours=-12
if(Min<=9){
Min="0"+Min
}
if(Sec<=9){
Sec="0"+Sec
}
var theTime=Hours + ":" + Min + ":" + Sec + " " + A
window.status=theTime
setTimeout("clock()",1000)
}
window.onload=clock
[/spoiler]
preview :
http://latansa.talk-forums.com/clock-style-h4.html
[li] Bubbble Status Bar[/li]
[spoiler]
// thanks to
www.javaplace.co.uk
//EDIT THIS PART
var text = "this is the bubble banner"
var speed = 200
var x = 0
//NOTHING TO EDIT HERE
function bubblekid() {
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("bubblekid()",speed)
}
bubblekid();
[/spoiler]
preview :
http://latansa.talk-forums.com/bubble-style-h2.html
[li]Flash Status Bar[/li]
[spoiler]
//thanks to MjM@hyperchat.co.uk
//EDIT THIS PART
var yourkidwords = "Thank you for visiting my site!";
//NOTHING TO EDIT BELOW
var speed = 150;
var control = 1;
function flashkid()
{
if (control == 1)
{
window.status=yourkidwords;
control=0;
}
else
{
window.status="";
control=1;
}
setTimeout("flashkid();",speed);
}
flashkid();
[/spoiler]
preview :
http://latansa.talk-forums.com/flash-style-h5.html
[li]Scroll Status Bar[/li]
[spoiler]
function kidscrollit(seed) {
// EDIT THIS PART AS YOUR MESSAGE
var m1 = "This is Scrolling Status Bar";
var m2 = "www.wsabstract.com";
var m3 = "rewritten by Kiddy - The Joker";
var m4 = "";
var msg=m1+m2+m3+m4;
var out = " ";
var c = 1;
// NOTHING TO EDIT BELOW
if (seed > 100) {
seed--;
cmd="kidscrollit("+seed+")";
timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 100 && seed > 0) {
for (c=0 ; c < seed ; c++) {
out+=" ";
}
out+=msg;
seed--;
window.status=out;
cmd="kidscrollit("+seed+")";
timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 0) {
if (-seed < msg.length) {
out+=msg.substring(-seed,msg.length);
seed--;
window.status=out;
cmd="kidscrollit("+seed+")";
timerTwo=window.setTimeout(cmd,100);
}
else {
window.status=" ";
timerTwo=window.setTimeout("kidscrollit(100)",75);
}
}
}
kidscrollit(100);
[/spoiler]
preview :
http://latansa.talk-forums.com/scroll-style-h6.html
[li]Slowly Status Bar[/li]
[spoiler]
// Copyright 1996 - Tomer and Yehuda Shiran
var speed = 10
var pause = 1500
var timerID = null
var bannerRunning = false
var ar = new Array()
// EDIT THIS PART
ar[0] = "Welcome to my preview page"
ar[1] = "Ini adalah status bar 'slowly' "
ar[2] = "Created by Tomer and Yehuda Shiran"
ar[3] = "Rewritten by Kiddy - The Joker"
// NOTHING TO EDIT BELOW
var message = 0
var state = ""
clearState()
function stopBanner() {
// if banner is currently running
if (bannerRunning)
// stop the banner
clearTimeout(timerID)
// timer is now stopped
timerRunning = false
}
function startBanner() {
// make sure the banner is stopped
stopBanner()
// start the banner from the current position
showBanner()
}
function clearState() {
state = ""
for (var i = 0; i < ar[message].length; ++i) {
state += "0"
}
}
function showBanner() {
if (getString()) {
message++
if (ar.length <= message)
message = 0
clearState()
timerID = setTimeout("showBanner()", pause)
}
else {
var str = ""
for (var j = 0; j < state.length; ++j) {
str += (state.charAt(j) == "1") ? ar[message].charAt(j) : " "
}
window.status = str
timerID = setTimeout("showBanner()", speed)
}
}
function getString() {
var full = true
for (var j = 0; j < state.length; ++j) {
if (state.charAt(j) == 0)
full = false
}
if (full) return true
while (1) {
var num = getRandom(ar[message].length)
if (state.charAt(num) == "0")
break
}
state = state.substring(0, num) + "1" + state.substring(num + 1, state.length)
return false
}
function getRandom(max) {
var now = new Date()
var num = now.getTime() * now.getSeconds() * Math.random()
return num % max
}
startBanner()
[/spoiler]
preview :
http://latansa.talk-forums.com/slowly-style-h7.html
save as ur external js
paste below addbox function
[quote][quote]function onProfileLoad() {
}
if (!attachOnLoadHandler(function(){onProfileLoad()})) window.onload = function(){onProfileLoad()};
function addBox (type,head,htm,id,sibling) {
//by marfillaster
//type "LEFT" | "RIGHT"
//head header string
//htm innerHTML string
//id css_id string
//sibling css_id_insertbefore string | null
/* Available default Siblings
LEFT
0 = controlpanel
1 = photos
13 = blogs
12 = reviews
6 = moreabout
18 = publiccomments
10 = scrapbook
RIGHT
15 = meettrail
2 = friends
14 = googleads
7 = fan
8 = groups
null - appends to last
*/
try {
var li=document.createElement("li");
} catch(e) {
var li=document.createElement("<li>");
}
if(type=="LEFT") {
var ul=document.getElementById("0").parentNode.parentNode;
htm="<div class='boxcontent'>"+htm+"</div>";
}
else var ul=document.getElementById("2").parentNode.parentNode;
li.innerHTML="<div id='"+id+"' class='commonbox "+id+"'>"+
"<h2>"+head+"</h2>"+
"<div id='content_"+id+"'>"+
htm+
"</div>"+
"</div>";
if(sibling==null) ul.appendChild(li);
else {
sibling=document.getElementById(sibling).parentNode;
ul.insertBefore(li,sibling);
}
}[/quote]
[color=blue][b]paste code here[/color][/b][/quote]
[color=red][b]be sure your status bar is not hidden[/b][/color]
toolbar menu
IE = view - status bar (sign it!)
Opera = view - toolbar - status bar (sign it!)
i hope you like it...
just choose one of all
[color=green][b]just for Internet Explorer n Opera Users[/b][/color]
Last edited by kiddy (2008-07-15 09:29:21)