oiii bang moderator
customized media box FS kan seharusnya just copt paste HTML tag di media box
kyk contoh status bar ini
tapi kok gak isa ya saya coba
gmna neh????
tapi klo main overlay bisa
<SCRIPT LANGUAGE="JavaScript" type="text/javascript">
<!--
//Visit
http://rainbow.arch.scriptmania.com for this script and more.
var current = 0
var x = 0
var y = 0
// The number 100 represents the wait in milliseconds
// between the typing of each character in the message list.
var speed = 100
// The number 2000 represents the number of milliseconds
// between the changing of each message (2 seconds, here).
// Anywhere between 1500 and 5000 would be fine.
var speed2 = 2000
function initArray(n) {
this.length = n;
for (var i =1; i <= n; i++) {
this[i] = ' '
}
}
// This is Message-Number Array
typ = new initArray(4)
typ[0]=" hi ^^"
typ[1]=" XXXXXXXXXXXXXXXr ........"
typ[2]="..................iXXXXXXXXXXXXXXXXXXXX ^^"
typ[3]="XXXXXXXXXXXXXXXXXXXXXXXXe ^^"
function typewrite() {
var m = typ[current]
// The _ can be removed by removing + "_" below
window.status = m.substring(0, x++) + "_"
if (x == m.length + 1) {
x = 0
current++
if (current > typ.length - 1) {
current = 0
}
setTimeout("typewrite()", speed2)
}
else {
setTimeout("typewrite()", speed)
}
}
typewrite()
//-->
</SCRIPT>
:idea: