PDA

View Full Version : HELP!!!



madchild24
03-10-2005, 11:40 AM
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?

Sygon
03-10-2005, 11:51 AM
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

madchild24
03-10-2005, 12:10 PM
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

Matt.
03-10-2005, 02:46 PM
i think i no what you mean:S use this php 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>
Hope that helps

Want to hide these adverts? Register an account for free!