
UPDATED: July 11, 2008 both works now in IE and FX
REQUIREMENTS:
1. A working ENTER/WELCOME/REDIRECTION PAGE
with clickable image or button to use for redirection...
--go look at trick and tutorial section on how to make one...
or see eehjay's compilation of codes...
2. wav sound files with a less kb. (you can get one at the links below).
download it and upload it on ur Ripway account...
or just get the file url from the sites...
but i recommend you to download and host it coz
sometimes file url on some sites are temporary...
http://simplythebest.net/sounds/WAV/sou…index.html
http://www.members.tripod.com/%7Ebugger…dir184.htm
How to apply codes on your Enter/Welcome page...
note: this is only a shortcut version... just showing you how or where to put the codes...
version 1 for IE only
<html>
<head>
<title>My Enter/Welcome/Redirection/Whatever Page</title>
<script language="javascript" type="text/javascript">
function playSound1() {
document.all.tune.src = "http://virus45.fileave.com/intros/intro.wav"
}
function playSound2() {
document.all.tune.src = "http://virus45.fileave.com/intros/toiletflush.wav"
}
function playSound3() {
document.all.tune.src = "http://virus45.fileave.com/intros/evil_laugh.wav"
}
</script>
</head>
<body OnLoad="playSound1()" bg color="ffffff">
<bgsound id="tune">
//clickable image button
<center><a href='http://profiles.friendster.com/user.php?uid=YOUR FRIENDSTER ID'><img src="PUT YOUR IMAGE/BUTTON HERE" onmouseover="playSound2()" onmouseout="playSound3()"></a></center>
</body>
</html>
version 2 for IE and FX
a. make another file... named it sounds.js
b. paste and edit the codes below... then save
//onload or background sound
if (navigator.appName == "Microsoft Internet Explorer") {
document.write('<bgsound src="http://virus45.fileave.com/intros/intro.wav" LOOP="false">');
}
else {
document.write('<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" Name="MediaPlayer" src="http://virus45.fileave.com/intros/intro.wav" AutoStart="true" ShowStatusBar="0" ShowControls="0" ShowDisplay="0" volume="-1" HEIGHT="1" WIDTH="1" loop="false">');
}
//image button sounds
function playSound1(solemn1) {
var thisclaimer1=document.getElementById(solemn1);
thisclaimer1.Play();
}
document.write('<embed src="http://virus45.fileave.com/intros/make_my_day.wav" ShowStatusBar="0" ShowControls="0" ShowDisplay="0" autostart=false width=0 height=0 id="solemn1" enablejavascript="true">');
function playSound2(solemn2){
var thisclaimer2=document.getElementById(solemn2);
thisclaimer2.Play();
}
document.write('<embed src="http://virus45.fileave.com/intros/standing_by.wav" ShowStatusBar="0" ShowControls="0" ShowDisplay="0" autostart=false width=0 height=0 id="solemn2" enablejavascript="true">');
NOTE: at the //onload or background sound... you can put a midi or mp3 filetype...
don't use a mp3 filetype on image button coz it loads slow...
c. then on your ENTER/WELCOME PAGE...
<html>
<head>
<title>My Enter/Welcome/Redirection/Whatever Page</title>
</head>
<body>
//clickable image button
<center><a href='http://profiles.friendster.com/user.php?uid=YOUR FRIENDSTER ID'><img src="PUT YOUR IMAGE/BUTTON HERE" onmouseover="playSound1('solemn1')" onmouseout="playSound2('solemn2')"></a></center>
//put sound file js URL here at the lowest part of the body
<script src="PUT sounds.js URL HERE" language="javascript" type="text/javascript"></script>
</body>
</html>
so if you're going to add more buttons and sounds...
just follow the number (1,2,3...etc.)patterns when adding a code/script...
NOTE: choose only one version.
and the redirection code for your js extension...(put on top)
place=document.location.href;
if(place!="http://profiles.friendster.com/user.php?uid="+pageOwnerID){
top.location.href="YOUR TARGET ENTER PAGE LINK HERE"
}
or
var place=document.location.href;
if(place!="http://profiles.friendster.com/user.php?uid="+pageOwnerID){
top.location.href="YOUR TARGET ENTER PAGE LINK HERE";
}
redirection credits to: Angell De Ville
don't forget to clear all your cache/temporary files first before entering your profile...
Preview: I'm not using a clickable image anymore... just html buttons...
but this will give you an idea...
go here: Welcome Page Preview
hope this helps... 
Last edited by Refresh/Reload (2008-09-10 17:18:51)

-Offline- |

-Offline- |

hehehe! you made it first to post it! nice!
![]()




-Offline- |

slashedkite wrote:
hehehe! you made it first to post it! nice!
![]()
any idea how to make it work on firefox?? 

-Offline- |

its not working i tried your codes 
-Offline- |

It works only in IE 




-Offline- |

yes Im using IE but still not working
-Offline- |
thanks for sharing.. very helpful in IE users ![]()
+Online+ |

balz wrote:
yes Im using IE but still not working
ur profile is in private... if u want help change it to public for a while 

-Offline- |

Nice Code ^_^ thnx for sharing ThIs One MaN!!!! 

-Offline- |

i was try that code bro at my enter page
but why it didn't work

/ahm..can we replace this wav with mp3 files?
-Offline- |


uhm.. i was wondering abotu this line :
<head>
function playSounds() {
document.all.tune.src = "http://h1.ripway.com/azozena/enter/attention.wav"
}
function playSounds1() {
document.all.tune.src = "http://h1.ripway.com/azozena/enter/evil_laugh.wav"
}
function playSounds2() {
document.all.tune.src = "http://h1.ripway.com/azozena/enter/baby_cry.wav"
}//-->
</script>
</head>is it not necessary to put the <script type="text/javascript"> tag on the start of the script? or is it automatically read by the computer as a script??
-Offline- |

nice code hehehe!!!thanks for sharing!!!
![]()



jagcopra wrote:
uhm.. i was wondering abotu this line :
Code:
<head> function playSounds() { document.all.tune.src = "http://h1.ripway.com/azozena/enter/attention.wav" } function playSounds1() { document.all.tune.src = "http://h1.ripway.com/azozena/enter/evil_laugh.wav" } function playSounds2() { document.all.tune.src = "http://h1.ripway.com/azozena/enter/baby_cry.wav" }//--> </script> </head>is it not necessary to put the <script type="text/javascript"> tag on the start of the script? or is it automatically read by the computer as a script??
oh my!! i made a big typo mistake there!! my bad!! thanx jagcopra for noticing it!!
i'll update it now... yes you can put it or just <script><!-- Thanx!!
@ balz and dj_dhey... pls try again... i updated the codes...
Last edited by Refresh/Reload (2007-07-27 08:35:31)

-Offline- |

Hehehe! Finally you have notice it! 




-Offline- |

slashedkite wrote:
Hehehe! Finally you have notice it!
hahah!! yeah thanx to jagcopra... i still can't believe i miss that important part heheh... 

-Offline- |

i got the code properly but the problem is.....
how can i make the loading the wavsounds fast ? ? ?
it takes 2 -3 seconds before it finishes the DL time of the Wav. sounds on My ProFiLe
www.friendster.com/rempsis
thats my ProFile...
Last edited by rexis28 (2007-07-27 11:17:30)

-Offline- |
thanks guys for sharing
-Offline- |