ive tired of trying to guess the code to put text in the loading bar (the grey bar that says done and items remaining)
can anyone help?
ive tired of trying to guess the code to put text in the loading bar (the grey bar that says done and items remaining)
can anyone help?
Originally Posted by bananasislegend
this thread might be better than sex..
I dont know what u mean please expand and cn u click on my sig link pls i need the domain thanks, if u expand maybe i cn help
u know the grey bar at the bottom of ur internet window(might be blue)
the one rite under scroll bar how do u get it to say like habbofuse
Originally Posted by bananasislegend
this thread might be better than sex..
i think i no what you mean:S use this php code
Hope that helpsPHP Code:<SCRIPT language=JavaScript>
<!-- Script courtesy of http://www.web-source.net - Your Guide to Professional Web Site Design and Development
var current = 0
var x = 0
var speed = 100
var speed2 = 100
function initArray(n) {
this.length = n;
for (var i =1; i <= n; i++) {
this[i] = ' '
}
}
typ = new initArray(4)
typ[0]="Your text here"
typ[1]="Your text here"
typ[2]="Your text here"
typ[3]="Your text here"
function typewrite() {
var m = typ[current]
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>
Want to hide these adverts? Register an account for free!