MyBB Community Forums

Full Version: Scroll Bar to Forum
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi i want to insert Scroll bar to my forum
can anyone tell me how to do that
which templates should i edit Smile

by Scroll Bar i mean i like this :-
<!--        Script by hscripts.com          -->
<!--        copyright of HIOX INDIA         -->
<!-- more scripts @ http://www.hscripts.com -->

<script language=javascript>
var rev = "fwd";
function titlebar(val)
{
	var msg  = "Your message here *** hscripts.com";
	var res = " ";
	var speed = 100;
	var pos = val;

	msg = "   |--- "+msg+" ---|";
	var le = msg.length;
	if(rev == "fwd"){
		if(pos < le){
		pos = pos+1;
		scroll = msg.substr(0,pos);
		document.title = scroll;
		timer = window.setTimeout("titlebar("+pos+")",speed);
		}
		else{
		rev = "bwd";
		timer = window.setTimeout("titlebar("+pos+")",speed);
		}
	}
	else{
		if(pos > 0){
		pos = pos-1;
		var ale = le-pos;
		scrol = msg.substr(ale,le);
		document.title = scrol;
		timer = window.setTimeout("titlebar("+pos+")",speed);
		}
		else{
		rev = "fwd";
		timer = window.setTimeout("titlebar("+pos+")",speed);
		}	
	}
}

titlebar(0);
</script>
<!--   Script by hscripts.com     -->




Image :-
[Image: s4mjwj.jpg]
In anywhere the index templates.

Wait does it add a link or anything that is visible?
just put the script into your headerinclude (ungrouped templates) works fine