• ARCHIVES 
  • » [b]UPDATED:[/b] July 11, 2008 both works now in IE and FX [b]REQUIREMENTS:[/b] 1. A working [b]ENTER/WELCOME/INTRO/REDIRECTION PAGE[/b] with [b]clickable image or button[/b] to use for redire

Pages: 12345678..8

[b]UPDATED:[/b] July 11, 2008 both works now in IE and FX [b]REQUIREMENTS:[/b] 1. A working [b]ENTER/WELCOME/INTRO/REDIRECTION PAGE[/b] with [b]clickable image or button[/b] to use for redire

Refresh/Reload
» FTalkAddict
FTalk Level: zero
332
0
1969-12-31

[b]UPDATED:[/b] July 11, 2008 both works now in IE and FX [b]REQUIREMENTS:[/b] 1. A working [b]ENTER/WELCOME/INTRO/REDIRECTION PAGE[/b] with [b]clickable image or button[/b] to use for redire

[b]UPDATED:[/b] July 11, 2008 both works now in IE and FX [b]REQUIREMENTS:[/b] 1. A working [b]ENTER/WELCOME/INTRO/REDIRECTION PAGE[/b] with [b]clickable image or button[/b] to use for redirection... --go look at trick and tutorial section on [b]how to make one[/b]... or see eehjay's compilation of codes... 2. [b]wav[/b] 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... [url]http://simplythebest.net/sounds/WAV/sound_effects_WAV/index.html[/url] [url]http://www.members.tripod.com/%7Ebuggerluggs/ie/wav-dir184.htm[/url] [b]How to apply codes on your Enter/Welcome page...[/b] [b]NOTE:[/b] this is only a [b][color=red]SHORTCUT VERSION[/color][/b]... just showing you how or where to put the codes... :arrow: [b]version 1[/b] for [b]IE[/b] only [quote]<html> <head> <title>My Enter/Welcome/Redirection/Whatever Page</title> <script language="javascript" type="text/javascript"> function playSound[b]1[/b]() { document.all.tune.src = "http://virus45.fileave.com/intros/intro.wav" } function playSound[b]2[/b]() { document.all.tune.src = "http://virus45.fileave.com/intros/toiletflush.wav" } function playSound[b]3[/b]() { document.all.tune.src = "http://virus45.fileave.com/intros/evil_laugh.wav" } </script> </head> <body OnLoad="playSound[b]1[/b]()" bg color="ffffff"> <bgsound id="[b]tune[/b]"> [b]//clickable image button[/b] <center><a href='[b]http://profiles.friendster.com/user.php?uid=YOUR FRIENDSTER ID'[/b]><img src="[b]PUT YOUR IMAGE/BUTTON URL HERE[/b]" onmouseover="playSound[b]2[/b]()" onmouseout="playSound[b]3[/b]()"></a></center> or [b]//clickable text button[/b] <center><a href="[b]http://profiles.friendster.com/user.php?uid=YOUR FRIENDSTER ID[/b]" class="[b]buttoncssid[/b]" onmouseover="playSound[b]2[/b]()" onmouseout="playSound[b]3[/b]()"> [b]skip or enter page[/b] </a></center> </body> </html>[/quote] playSound[b]1[/b]() is for the [b]background sound[/b] when the page load. [b]buttoncssid[/b] <-- css id of text button(create one and include it on your html page css if you have one) :arrow: [b]version 2[/b] for [b]IE[/b] and [b]FX[/b] a. make another file... named it [b][color=red]sounds.js[/color][/b] b. paste and edit the codes below... then save [quote][b]//loading or background sound[/b] if (navigator.appName == "Microsoft Internet Explorer") { document.write('<bgsound src="[b]http://virus45.fileave.com/intros/intro.wav[/b]" LOOP="false">'); } else { document.write('<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" Name="MediaPlayer" src="[b]http://virus45.fileave.com/intros/intro.wav[/b]" AutoStart="true" ShowStatusBar="0" ShowControls="0" ShowDisplay="0" volume="-1" HEIGHT="1" WIDTH="1" loop="false">'); } [b]//for image or text button sounds[/b] function playSound[b]1[/b](solemn[b]1[/b]) { var thisclaimer[b]1[/b]=document.getElementById(solemn[b]1[/b]); thisclaimer[b]1[/b].Play(); } document.write('<embed src="[b]http://virus45.fileave.com/intros/make_my_day.wav[/b]" ShowStatusBar="0" ShowControls="0" ShowDisplay="0" autostart=false width=0 height=0 id="solemn[b]1[/b]" enablejavascript="true">'); function playSound[b]2[/b](solemn[b]2[/b]){ var thisclaimer[b]2[/b]=document.getElementById(solemn[b]2[/b]); thisclaimer[b]2[/b].Play(); } document.write('<embed src="[b]http://virus45.fileave.com/intros/standing_by.wav[/b]" ShowStatusBar="0" ShowControls="0" ShowDisplay="0" autostart=false width=0 height=0 id="solemn[b]2[/b]" enablejavascript="true">');[/quote] NOTE: at the //onload or background sound... you can put a midi or mp3 file type... don't use a mp3 filetype on image button coz it loads slow... c. then on your ENTER/WELCOME PAGE... [quote]<html> <head> <title>My Enter/Welcome/Redirection/Whatever Page</title> </head> <body> [b]//clickable image button[/b] <center><[b]a href='http://profiles.friendster.com/user.php?uid=YOUR FRIENDSTER ID'[/b]><img src="[b]PUT YOUR IMAGE/BUTTON URL HERE[/b]" onmouseover="playSound[b]1[/b]('solemn[b]1[/b]')" onmouseout="playSound[b]2[/b]('solemn[b]2[/b]')"></a></center> or [b]//clickable text button[/b] <center><a href="[b]http://profiles.friendster.com/user.php?uid=YOUR FRIENDSTER ID[/b]" class="[b]buttoncssid[/b]" onmouseover="playSound[b]1[/b]('solemn[b]1[/b]')" onmouseout="playSound[b]2[/b]('solemn[b]2[/b]')"> [b]skip or enter page[/b] </a></center> [b][color=green]//put sound file js URL here at the lowest part of the body[/color][/b] <script src="[b]PUT [color=red]sounds.js[/color] URL HERE[/b]" language="javascript" type="text/javascript"></script> </body> </html>[/quote] 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... [b]buttoncssid[/b] <-- css id of text button(create one and include it on your html page css if you have one) NOTE: choose only one [b]version[/b]. [b]and the redirection code[/b] [quote]place=document.location.href; if(place!="http://profiles.friendster.com/user.php?uid="+pageOwnerID){ top.location.href="[b]YOUR TARGET ENTER PAGE LINK HERE[/b]" }[/quote] or [quote]var place=document.location.href; if(place!="http://profiles.friendster.com/user.php?uid="+pageOwnerID){ top.location.href="[b]YOUR TARGET ENTER PAGE LINK HERE[/b]"; }[/quote] [b]How to manage your extension files and redirection for IE and FX.[/b] let's say our hosting site is Ripway... [b]First compile your extension files for IE and FX[/b] Example files: -- for IE -- http://h1.ripway.com/azozena/rakista/explorer.js <-- where inside are all your compiled js codes for IE. http://h1.ripway.com/azozena/rakista/explorer.css <-- where inside are all your compiled css codes for IE. -- for FX -- http://h1.ripway.com/azozena/rakista/firefox.js <-- where inside are all your compiled js codes for FX. http://h1.ripway.com/azozena/rakista/firefox.css <-- where inside are all your compiled css codes for FX. create another file and use the script below... [quote]if (navigator.appName == "Microsoft Internet Explorer") { var expyjs = document.createElement("script"); expyjs.type = "text/javascript"; expyjs.src = "[b]http://h1.ripway.com/azozena/rakista/explorer.js[/b]"; document.getElementsByTagName("head")[0].appendChild(expyjs); var expycss = document.createElement("link"); expycss.type = "text/css"; expycss.rel = "stylesheet"; expycss.href = "[b]http://h1.ripway.com/azozena/rakista/explorer.css[/b]"; expycss.media = "screen, print"; document.getElementsByTagName("head")[0].appendChild(expycss); } else { var foxyjs = document.createElement("script"); foxyjs.type = "text/javascript"; foxyjs.src = "[b]http://h1.ripway.com/azozena/rakista/firefox.js[/b]"; document.getElementsByTagName("head")[0].appendChild(foxyjs); var foxycss = document.createElement("link"); foxycss.type = "text/css"; foxycss.rel = "stylesheet"; foxycss.href = "[b]http://h1.ripway.com/azozena/rakista/firefox.css[/b]"; foxycss.media = "screen, print"; document.getElementsByTagName("head")[0].appendChild(foxycss); }[/quote] save and named it like... [b]extension.js[/b] [b]ex URL:[/b] http://h1.ripway.com/azozena/rakista/extension.js In this way you can control both the output of your IE and FX page layout. then create another file using your [b].htm or .html[/b] file of your [b]welcome/intro/enter page[/b] on the script below ([b]redirection[/b]). together with your [b]extension.js[/b] direct link... [b]ex URL:[/b] http://h1.ripway.com/pitbull/welcome/intro.html [quote]var place=document.location.href; if(place!="http://profiles.friendster.com/user.php?uid="+pageOwnerID){ top.location.href="[b]http://h1.ripway.com/pitbull/welcome/intro.html[/b]"; } else { var backtopage=document.createElement("script"); backtopage.type="text/javascript"; backtopage.src="[b]http://h1.ripway.com/azozena/rakista/extension.js[/b]"; document.getElementsByTagName("head")[0].appendChild(backtopage); }[/quote] save and named it like... [b]maincode.js[/b] [b]ex:[/b] http://h1.ripway.com/azozena/rakista/maincode.js then put the Direct Link([b]URL[/b]) of [b]maincode.js[/b] on a [b]JS Linker Code[/b] available. then put the linker on your Friendster Page... wherever it should be... [b]NOTE:[/b] All the URL above are examples only... you can change all your [b].js[/b] files to [b].swf[/b] also... NOTE: This is '[b]my way[/b]' so it's up to you to use this steps or not... [b]If you're steps are different...[/b] just put/insert/add the redirection code [b]on top[/b] of your compiled js codes... redirection credits to: [b]Angell De Ville[/b] don't forget to [b]clear all your cache/temporary files[/b] first before entering your profile... [b]Preview:[/b] I'm not using a clickable image anymore... just text button... but this will give you an idea... [b]go here:[/b] [url=http://disclaimer.agilityhoster.com/kpalxi/intro.html]Welcome Page Preview[/url] mouseover and mouseout the button there... hope this helps... :D

Last edited by Refresh/Reload (2009-04-19 10:05:42)

dale
» FTalkAgent
FTalk Level: zero
2122
0
1969-12-31

Re: [b]UPDATED:[/b] July 11, 2008 both works now in IE and FX [b]REQUIREMENTS:[/b] 1. A working [b]ENTER/WELCOME/INTRO/REDIRECTION PAGE[/b] with [b]clickable image or button[/b] to use for redire

wow men!! nice tricks!!! :thumbsup:
slashedkite
» FTalkManiac
FTalk Level: zero
973
0
1969-12-31

Re: [b]UPDATED:[/b] July 11, 2008 both works now in IE and FX [b]REQUIREMENTS:[/b] 1. A working [b]ENTER/WELCOME/INTRO/REDIRECTION PAGE[/b] with [b]clickable image or button[/b] to use for redire

hehehe! you made it first to post it! nice! ;) :thumbsup:
Refresh/Reload
» FTalkAddict
FTalk Level: zero
332
0
1969-12-31

Re: [b]UPDATED:[/b] July 11, 2008 both works now in IE and FX [b]REQUIREMENTS:[/b] 1. A working [b]ENTER/WELCOME/INTRO/REDIRECTION PAGE[/b] with [b]clickable image or button[/b] to use for redire

[quote=slashedkite]hehehe! you made it first to post it! nice! ;) :thumbsup:[/quote] any idea how to make it work on firefox?? =(
balz
» n00b
FTalk Level: zero
18
0
1969-12-31

Re: [b]UPDATED:[/b] July 11, 2008 both works now in IE and FX [b]REQUIREMENTS:[/b] 1. A working [b]ENTER/WELCOME/INTRO/REDIRECTION PAGE[/b] with [b]clickable image or button[/b] to use for redire

its not working i tried your codes :(
slashedkite
» FTalkManiac
FTalk Level: zero
973
0
1969-12-31

Re: [b]UPDATED:[/b] July 11, 2008 both works now in IE and FX [b]REQUIREMENTS:[/b] 1. A working [b]ENTER/WELCOME/INTRO/REDIRECTION PAGE[/b] with [b]clickable image or button[/b] to use for redire

It works only in IE ;)
balz
» n00b
FTalk Level: zero
18
0
1969-12-31

Re: [b]UPDATED:[/b] July 11, 2008 both works now in IE and FX [b]REQUIREMENTS:[/b] 1. A working [b]ENTER/WELCOME/INTRO/REDIRECTION PAGE[/b] with [b]clickable image or button[/b] to use for redire

yes Im using IE but still not working
ezil2007
» FTalkGeek
FTalk Level: zero
1426
0
1969-12-31

Re: [b]UPDATED:[/b] July 11, 2008 both works now in IE and FX [b]REQUIREMENTS:[/b] 1. A working [b]ENTER/WELCOME/INTRO/REDIRECTION PAGE[/b] with [b]clickable image or button[/b] to use for redire

thanks for sharing.. very helpful in IE users :thumbsup:
Refresh/Reload
» FTalkAddict
FTalk Level: zero
332
0
1969-12-31

Re: [b]UPDATED:[/b] July 11, 2008 both works now in IE and FX [b]REQUIREMENTS:[/b] 1. A working [b]ENTER/WELCOME/INTRO/REDIRECTION PAGE[/b] with [b]clickable image or button[/b] to use for redire

[quote=balz]yes Im using IE but still not working[/quote] ur profile is in private... if u want help change it to public for a while =)
rexis28
» FTalker
FTalk Level: zero
148
0
1969-12-31

Re: [b]UPDATED:[/b] July 11, 2008 both works now in IE and FX [b]REQUIREMENTS:[/b] 1. A working [b]ENTER/WELCOME/INTRO/REDIRECTION PAGE[/b] with [b]clickable image or button[/b] to use for redire

Nice Code ^_^ thnx for sharing ThIs One MaN!!!! :D
dj_dhey
» FTalkFreak
FTalk Level: zero
1528
0
1969-12-31

Re: [b]UPDATED:[/b] July 11, 2008 both works now in IE and FX [b]REQUIREMENTS:[/b] 1. A working [b]ENTER/WELCOME/INTRO/REDIRECTION PAGE[/b] with [b]clickable image or button[/b] to use for redire

i was try that code bro at my enter page but why it didn't work :wallbash: :wallbash: :wallbash:
menvermandolin
» n00b
FTalk Level: zero
9
0
1969-12-31

Re: [b]UPDATED:[/b] July 11, 2008 both works now in IE and FX [b]REQUIREMENTS:[/b] 1. A working [b]ENTER/WELCOME/INTRO/REDIRECTION PAGE[/b] with [b]clickable image or button[/b] to use for redire

ahm..can we replace this wav with mp3 files?
Ephemeral
» FTalkElite
FTalk Level: zero
4669
0
1969-12-31

Re: [b]UPDATED:[/b] July 11, 2008 both works now in IE and FX [b]REQUIREMENTS:[/b] 1. A working [b]ENTER/WELCOME/INTRO/REDIRECTION PAGE[/b] with [b]clickable image or button[/b] to use for redire

^Sure much better :lol:
jagcopra
» FTalker
FTalk Level: zero
175
0
1969-12-31

Re: [b]UPDATED:[/b] July 11, 2008 both works now in IE and FX [b]REQUIREMENTS:[/b] 1. A working [b]ENTER/WELCOME/INTRO/REDIRECTION PAGE[/b] with [b]clickable image or button[/b] to use for redire

uhm.. i was wondering abotu this line : <">is it not necessary to put the [b]<script type="text/javascript">[/b] tag on the start of the script? or is it automatically read by the computer as a script??
frostmourne_05
» FTalker
FTalk Level: zero
123
0
1969-12-31

Re: [b]UPDATED:[/b] July 11, 2008 both works now in IE and FX [b]REQUIREMENTS:[/b] 1. A working [b]ENTER/WELCOME/INTRO/REDIRECTION PAGE[/b] with [b]clickable image or button[/b] to use for redire

nice code hehehe!!!thanks for sharing!!! :thumbsup: :thumbsup:
Refresh/Reload
» FTalkAddict
FTalk Level: zero
332
0
1969-12-31

Re: [b]UPDATED:[/b] July 11, 2008 both works now in IE and FX [b]REQUIREMENTS:[/b] 1. A working [b]ENTER/WELCOME/INTRO/REDIRECTION PAGE[/b] with [b]clickable image or button[/b] to use for redire

[quote=jagcopra]uhm.. i was wondering abotu this line : <">is it not necessary to put the [b]<script type="text/javascript">[/b] tag on the start of the script? or is it automatically read by the computer as a script??[/quote] 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><!-- [b]Thanx!![/b] :D @ balz and dj_dhey... pls try again... i updated the codes...

Last edited by Refresh/Reload (2007-07-27 04:35:31)

slashedkite
» FTalkManiac
FTalk Level: zero
973
0
1969-12-31

Re: [b]UPDATED:[/b] July 11, 2008 both works now in IE and FX [b]REQUIREMENTS:[/b] 1. A working [b]ENTER/WELCOME/INTRO/REDIRECTION PAGE[/b] with [b]clickable image or button[/b] to use for redire

Hehehe! Finally you have notice it! :D
Refresh/Reload
» FTalkAddict
FTalk Level: zero
332
0
1969-12-31

Re: [b]UPDATED:[/b] July 11, 2008 both works now in IE and FX [b]REQUIREMENTS:[/b] 1. A working [b]ENTER/WELCOME/INTRO/REDIRECTION PAGE[/b] with [b]clickable image or button[/b] to use for redire

[quote=slashedkite]Hehehe! Finally you have notice it! :D[/quote] hahah!! yeah thanx to jagcopra... i still can't believe i miss that important part heheh... :D
rexis28
» FTalker
FTalk Level: zero
148
0
1969-12-31

Re: [b]UPDATED:[/b] July 11, 2008 both works now in IE and FX [b]REQUIREMENTS:[/b] 1. A working [b]ENTER/WELCOME/INTRO/REDIRECTION PAGE[/b] with [b]clickable image or button[/b] to use for redire

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 :arrow: www.friendster.com/rempsis thats my ProFile...

Last edited by rexis28 (2007-07-27 07:17:30)

mz_cutie143
» n00b
FTalk Level: zero
4
0
1969-12-31

Re: [b]UPDATED:[/b] July 11, 2008 both works now in IE and FX [b]REQUIREMENTS:[/b] 1. A working [b]ENTER/WELCOME/INTRO/REDIRECTION PAGE[/b] with [b]clickable image or button[/b] to use for redire

thanks guys for sharing
  • ARCHIVES 
  • » [b]UPDATED:[/b] July 11, 2008 both works now in IE and FX [b]REQUIREMENTS:[/b] 1. A working [b]ENTER/WELCOME/INTRO/REDIRECTION PAGE[/b] with [b]clickable image or button[/b] to use for redire

Pages: 12345678..8

Board footer

© 2024 F Talk

Current time is 20:03

[ 11 queries - 0.031 second ]
Privacy Policy