Google
 

Go Back   NackVision > Website Related > Friendster Overlay

Friendster Overlay Codes and tutorials on overlay

Reply
 
Thread Tools
Old 06-16-2006, 11:01 PM   #1
gwapings213
Moderator
 
gwapings213's Avatar
 
Join Date: Apr 2006
Location: dasmarinas village
Posts: 798
Send a message via AIM to gwapings213 Send a message via MSN to gwapings213 Send a message via Yahoo to gwapings213 Send a message via Skype™ to gwapings213
mouse over sound.

This works with IE4+ only, other browsers should just see a plain link.
Installation Instructions

Paste the BODY Section code from above between the <body> and </body> tags on your page, exactly where you want the forward and back images to appear.
Find the matching lines below in the script and change the text in red to the URLs and text you wish to use:

<EMBED SRC="sound_file_name.wav" autostart="false" hidden="true">
document.all.sound.src = "sound_file_name.wav";
<A HREF="http://yoursite.com/page.html" onMouseover="playHome()">HERE</A>

 
<EMBED SRC="sound_file_name.wav" autostart="false" hidden="true">
<SCRIPT language="JavaScript">
<!--
function playHome() 
{
if (document.all)
 {
  document.all.sound.src = "sound_file_name.wav";
 }
}
//-->
</SCRIPT>
<bgsound id="sound">
Put your mouse on the link to hear a sound
<A HREF="http://yoursite.com/page.html" onMouseover="playHome()">HERE</A>
(Offline)
 
Reply With Quote
Old 06-16-2006, 11:45 PM   #2
gwapings213
Moderator
 
gwapings213's Avatar
 
Join Date: Apr 2006
Location: dasmarinas village
Posts: 798
Send a message via AIM to gwapings213 Send a message via MSN to gwapings213 Send a message via Yahoo to gwapings213 Send a message via Skype™ to gwapings213
write date on page

This script will allow you to display the date on your web page.

Installation Instructions

  1. Paste the BODY Section code from above between the <body> and </body> tags on your page, exactly where you want the date to appear.

 
<script type="text/javascript">
<!--
function write_date()
{
 var thetime=new Date();
 var nday=thetime.getDay();
 var nmonth=thetime.getMonth();
 var ntoday=thetime.getDate();
 var nyear=thetime.getYear();
 var AorP=" ";
 if (nday==0)
  nday="Sunday";
 if (nday==1)
  nday="Monday";
 if (nday==2)
  nday="Tuesday";
 if (nday==3)
  nday="Wednesday";
 if (nday==4)
  nday="Thursday";
 if (nday==5)
  nday="Friday";
 if (nday==6)
  nday="Saturday";
 nmonth+=1;
 if (nyear<=99)
  nyear= "19"+nyear;
 if ((nyear>99) && (nyear<2000))
  nyear+=1900;
 document.write("Today is "+nday+", "+nmonth+"-"+ntoday+"-"+nyear);
} 
write_date();
//-->
</script>
(Offline)
 
Reply With Quote
Old 06-16-2006, 11:58 PM   #3
gwapings213
Moderator
 
gwapings213's Avatar
 
Join Date: Apr 2006
Location: dasmarinas village
Posts: 798
Send a message via AIM to gwapings213 Send a message via MSN to gwapings213 Send a message via Yahoo to gwapings213 Send a message via Skype™ to gwapings213
random qoute writing

This script will write a random quote from a set of 10 into a web page where you want it to show up.

  1. Paste the BODY Section code from above between the <body> and </body> tags on your page, exactly where you want the quote to appear.
  2. Change the text in red below to the quotes you want to use.



 
<script type="text/javascript">
<!--
function get_random(maxNum)
{
 var ranNum= Math.floor(Math.random()*(maxNum-1));
 ranNum+=1;
 return ranNum;
}
function getaQuote()
{
 var maxQuotes=10;
 var whichQuote=get_random(maxQuotes);
 whichQuote--;
var quote=new Array(maxQuotes)
   quote[0]="Quote #1";
   quote[1]="Quote #2";
   quote[2]="Quote #3";   
   quote[3]="Quote #4";
   quote[4]="Quote #5";
   quote[5]="Quote #6";
   quote[6]="Quote #7";
   quote[7]="Quote #8";
   quote[8]="Quote #9";
   quote[9]="Quote #10";
document.write(quote[whichQuote]);
}
getaQuote();
//-->
</script>
(Offline)
 
Reply With Quote
Old 06-17-2006, 12:06 AM   #4
gwapings213
Moderator
 
gwapings213's Avatar
 
Join Date: Apr 2006
Location: dasmarinas village
Posts: 798
Send a message via AIM to gwapings213 Send a message via MSN to gwapings213 Send a message via Yahoo to gwapings213 Send a message via Skype™ to gwapings213
name prompt

This code should be placed between the <body> and </body> tags.
a prompt bar will ask your visitors name and greet him/her as well.





 
<script language="JavaScript">
document.write("Hello " + ((tmp = prompt('What is your name?','')) ? tmp : 'Forgotten Person') + "!");
</script>
(Offline)
 
Reply With Quote
Old 06-17-2006, 12:15 AM   #5
angpogi
Junior Member
 
angpogi's Avatar
 
Join Date: Jun 2006
Posts: 4
Gwapings panoh paganahin 2
(Offline)
 
Reply With Quote
Old 06-17-2006, 12:20 AM   #6
gwapings213
Moderator
 
gwapings213's Avatar
 
Join Date: Apr 2006
Location: dasmarinas village
Posts: 798
Send a message via AIM to gwapings213 Send a message via MSN to gwapings213 Send a message via Yahoo to gwapings213 Send a message via Skype™ to gwapings213
Originally Posted by angpogi
Gwapings panoh paganahin 2
the script codes above are for overlay profile, the instruction were already there..
(Offline)
 
Reply With Quote
Old 06-17-2006, 11:43 AM   #7
dashling
Senior Member
 
dashling's Avatar
 
Join Date: May 2006
Location: secrEt
Posts: 488
ei ......... la bang calendar ...........
__________________
[ Bleach ] [ I dont Love You ]
(Offline)
 
Reply With Quote
Old 06-17-2006, 04:27 PM   #8
adiktos
Moderator
 
adiktos's Avatar
 
Join Date: Apr 2006
Location: Mindanao
Posts: 224
Send a message via MSN to adiktos Send a message via Yahoo to adiktos Send a message via Skype™ to adiktos
Non Pop-up no right click!!

<script language=JavaScript>
<!--

//Disable right click script III- By Renigade (renigade@mediaone.net)
//For full source code, visit http://www.dynamicdrive.com

var message="";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!docum ent.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document. onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontext menu=clickIE;}

document.oncontextmenu=new Function("return false")
// -->
</script>
it works in my page... try it, if it works in your!!
__________________


(Offline)
 
Reply With Quote
Old 06-17-2006, 05:40 PM   #9
ronron023
Junior Member
 
ronron023's Avatar
 
Join Date: Dec 2005
Posts: 3
Oi Dude Penge naman ng mga lay out dyan..
(Offline)
 
Reply With Quote
Old 06-17-2006, 05:42 PM   #10
dashling
Senior Member
 
dashling's Avatar
 
Join Date: May 2006
Location: secrEt
Posts: 488
ang daming layout na nka post d2............. hanapin mo na lng ............
__________________
[ Bleach ] [ I dont Love You ]
(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 01:04 AM.