Google
 

Go Back   NackVision > Website Related > Premade Layout > Premade Friendster Overlay

Reply
 
Thread Tools
Old 10-15-2006, 09:13 PM   #1
frogi_2_frogi
Junior Member
 
Join Date: Jul 2006
Posts: 3
Java Script For Overlay Users

Flashing status bar
Step 1: Insert the following into the <head> section of your page:
<script language="JavaScript">
<!--
var yourwords = "Thank you for visiting my site!";
var speed = 150;
var control = 1;
function flash()
{
if (control == 1)
{
window.status=yourwords;
control=0;
}
else
{
window.status="";
control=1;
}
setTimeout("flash();",speed);
}
// -->
</script>
Step 2: insert the following into the <body> tag, like below:
<body onload="flash();">
__________________________________________________ ______________
Hide Status bar message
Step 1: Add the following into the <HEAD> section of your page:
<script>

//configure status message to show
var statusmsg=""
function hidestatus(){
window.status=statusmsg
return true
}
</script>
Step 2: Inside each link you wish to mask the status bar message, add the below onMouseover code into it as follows:
<a href="Your link" onMouseover="return hidestatus()">link name</a>
(Offline)
 
Reply With Quote
Old 10-15-2006, 09:53 PM   #2
vices
Senior Member
 
vices's Avatar
 
Join Date: Aug 2006
Posts: 97
tnx for sharin dude,,^_^
__________________
(Offline)
 
Reply With Quote
Reply


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -7. The time now is 12:03 AM.