• ARCHIVES 
  • » [quote]the trick still works... but due to some friendster module updates your addbox function must be replaced by an updated newBox. see some post by JacktheRipper... (use [b]Search[/b] nav above)[/q

Pages: 1234567..7

[quote]the trick still works... but due to some friendster module updates your addbox function must be replaced by an updated newBox. see some post by JacktheRipper... (use [b]Search[/b] nav above)[/q

aBBy413
» n00b
FTalk Level: zero
79
0
1969-12-31

Re: [quote]the trick still works... but due to some friendster module updates your addbox function must be replaced by an updated newBox. see some post by JacktheRipper... (use [b]Search[/b] nav above)[/q

[b]@Refresh/Reload[/b] Thanks so much 4 ur help.. rily do appreciate it.. :) =) :)
flavonoid
» Banned
FTalk Level: zero
136
0
1969-12-31

Re: [quote]the trick still works... but due to some friendster module updates your addbox function must be replaced by an updated newBox. see some post by JacktheRipper... (use [b]Search[/b] nav above)[/q

this one rocks!
deeucul
» FTalkFreak
FTalk Level: zero
1548
0
1969-12-31

Re: [quote]the trick still works... but due to some friendster module updates your addbox function must be replaced by an updated newBox. see some post by JacktheRipper... (use [b]Search[/b] nav above)[/q

latest update??? :( :| :| :| :|
flavonoid
» Banned
FTalk Level: zero
136
0
1969-12-31

Re: [quote]the trick still works... but due to some friendster module updates your addbox function must be replaced by an updated newBox. see some post by JacktheRipper... (use [b]Search[/b] nav above)[/q

i hope this will work.. :thumbsup:
bluemango
» n00b
FTalk Level: zero
45
0
1969-12-31

Re: [quote]the trick still works... but due to some friendster module updates your addbox function must be replaced by an updated newBox. see some post by JacktheRipper... (use [b]Search[/b] nav above)[/q

[quote=Refresh/Reload]Thanx guys!! :D @ bluemango see the link i gave... the original code of this script made by marfillaster... the step to combine it on wvm are explained there..[/quote] it didnt work, maybe its has conflict on my other codes.. thanks for the help anyway.. ;]
~Avant~
» FTalker
FTalk Level: zero
124
0
1969-12-31

Re: [quote]the trick still works... but due to some friendster module updates your addbox function must be replaced by an updated newBox. see some post by JacktheRipper... (use [b]Search[/b] nav above)[/q

cool trick!!!
jeniphy
» FTalkAddict
FTalk Level: zero
311
0
1969-12-31

Re: [quote]the trick still works... but due to some friendster module updates your addbox function must be replaced by an updated newBox. see some post by JacktheRipper... (use [b]Search[/b] nav above)[/q

nice one..!! tnx 4 sharing!! :thumbsup:
pitoi
» n00b
FTalk Level: zero
5
0
1969-12-31

Re: [quote]the trick still works... but due to some friendster module updates your addbox function must be replaced by an updated newBox. see some post by JacktheRipper... (use [b]Search[/b] nav above)[/q

i don't get it for the css,,, ;) ,,,is it okay if i mix it with my tracker.css or i must make another one,,??...if i make one else,what the code to mix it with my tracker.js,,,???....
Refresh/Reload
» FTalkAddict
FTalk Level: zero
332
0
1969-12-31

Re: [quote]the trick still works... but due to some friendster module updates your addbox function must be replaced by an updated newBox. see some post by JacktheRipper... (use [b]Search[/b] nav above)[/q

[quote=pitoi]i don't get it for the css,,, ;) ,,,is it okay if i mix it with my tracker.css or i must make another one,,??...if i make one else,what the code to mix it with my tracker.js,,,???....[/quote] hey what tracker.css or js?? this is not related to WVM... don't put any css on your tracker.css if it doesn't involve the tracker... you'll ruin it... you have to put the css on your main css.. don't you have one? I mean in creating a extension profile.. you have to have a main js files and a main css file then combine the two... and regarding this code.. just add this to your tracker.js if it is your main js file.. =)
pitoi
» n00b
FTalk Level: zero
5
0
1969-12-31

Re: [quote]the trick still works... but due to some friendster module updates your addbox function must be replaced by an updated newBox. see some post by JacktheRipper... (use [b]Search[/b] nav above)[/q

=) =) ,,,i almost crush my wvm,,, :wallbash: ,,, :o .. okay i'll try to follow it,,,thanksssss,,,,, :thumbsup:
sheeberi
» n00b
FTalk Level: zero
6
0
1969-12-31

Re: [quote]the trick still works... but due to some friendster module updates your addbox function must be replaced by an updated newBox. see some post by JacktheRipper... (use [b]Search[/b] nav above)[/q

To ezil here's my code. sorry i pasted it coz i dnt know how to put a code here... /* F. RANDOMIZER */ function randOrd(){ return (Math.round(Math.random())-0.5); } if (typeof Ffetcher == "undefined") { Ffetcher = {}; } Ffetcher = { friends: new Array(), pages: null, maxfriends: null, container: null, cached: new Array(), display: 9, base_domain: "http://profiles.friendster.com", init: function() { var num=document.links; for(var x=0;x<num.length;x++) { if (num[x].href.match(/\/friends\/[\d]+?/)) { var t=/\(([\d]+?)\)/; this.maxfriends=t.exec(num[x].innerHTML)[1]; break; } } this.pages=Math.floor(this.maxfriends/30); var htm="<div id='fcontainer'></div>"; addBox("RIGHT","FRIENDS IN RANDOM",htm,"frbox","friends_2_2"); document.getElementById("content_frbox").innerHTML+="<div class='viewall'><a href='javascript: void(Ffetcher.more())'>More Random Friends</a></div>"; this.container=document.getElementById("fcontainer"); this.fetch(0); }, fetch: function(page) { document.getElementById("frbox").childNodes[0].innerHTML="Friends Loading... Pls wait..."; processAjaxRequest("GET",this.base_domain+"/friends/"+pageOwnerID+"/"+page,true,null, "parseFriends",page); }, show: function() { this.container.innerHTML=""; this.friends.sort(randOrd); for(var x=0;x<this.display;x++) { this.container.innerHTML+=this.friends[x]; } }, more: function() { if(this.cached.length<(this.pages+1)) { var temp; do { temp=Math.ceil(Math.random()*(this.pages)); }while(this.cached.toString().indexOf(":"+temp+":")!=-1); this.fetch(temp); } else { this.show(); } } }; function parseFriends(htm,page) { if(!htm){ Ffetcher.fetch(page); return; } var r= /search1\x22>[\S\s]+?paginglinksmodule\x22>([\S\s]+?)<div class=\x22paginglinksmodule/; var temp=r.exec(htm)[1]; temp=temp.match(/<div class="flogriditem">[\S\s]+?<\/div>\n<\/div><\/div>/g); for(var x=0;x<temp.length;x++) { temp[x]=temp[x].replace("samsg_icon.gif>","samsg_icon.gif />"); temp[x]=temp[x].replace(/<a /g,"<a target=_blank "); if(!temp[x].match("nophoto")) Ffetcher.friends.push(temp[x]); } Ffetcher.cached.push(":"+page+":"); document.getElementById("frbox").childNodes[0].innerHTML="Friends "; Ffetcher.show(); }
ezil2007
» FTalkGeek
FTalk Level: zero
1426
0
1969-12-31

Re: [quote]the trick still works... but due to some friendster module updates your addbox function must be replaced by an updated newBox. see some post by JacktheRipper... (use [b]Search[/b] nav above)[/q

find this code [quote]addBox("RIGHT","FRIENDS IN RANDOM",htm,"frbox","friends_2_2");[/quote] change FRIENDS IN RANDOM to your desired title of the randomizer :)
sheeberi
» n00b
FTalk Level: zero
6
0
1969-12-31

Re: [quote]the trick still works... but due to some friendster module updates your addbox function must be replaced by an updated newBox. see some post by JacktheRipper... (use [b]Search[/b] nav above)[/q

that is what i did but it don't change, i already refreshed my profy many times. var htm="<div id='fcontainer'></div>"; addBox("RIGHT","FRIENDS IN RANDOM",htm,"frbox","friends_2_2"); document.getElementById("content_frbox").innerHTML+="<div class='viewall'><a href='javascript: void(Ffetcher.more())'>More Random Friends</a></div>"; this.container=document.getElementById("fcontainer"); this.fetch(0); },
ezil2007
» FTalkGeek
FTalk Level: zero
1426
0
1969-12-31

Re: [quote]the trick still works... but due to some friendster module updates your addbox function must be replaced by an updated newBox. see some post by JacktheRipper... (use [b]Search[/b] nav above)[/q

i see.. now cant help your problem miss im so sorry :wallbash: well just wait for refresh/reload reply for this :penguin:
sheeberi
» n00b
FTalk Level: zero
6
0
1969-12-31

Re: [quote]the trick still works... but due to some friendster module updates your addbox function must be replaced by an updated newBox. see some post by JacktheRipper... (use [b]Search[/b] nav above)[/q

It's alright. Thanks anyway. :)
Refresh/Reload
» FTalkAddict
FTalk Level: zero
332
0
1969-12-31

Re: [quote]the trick still works... but due to some friendster module updates your addbox function must be replaced by an updated newBox. see some post by JacktheRipper... (use [b]Search[/b] nav above)[/q

[quote=sheeberi]It's alright. Thanks anyway. :)[/quote] are you asking where i put the title..?? =D look for this part... it's on the last part of your codes.... [quote]Ffetcher.cached.push(":"+page+":"); document.getElementById("frbox").childNodes[0].innerHTML="[b]Friends[/b] "; Ffetcher.show(); }[/quote] see the bold letter "Friends ";..?? That's it!! Change it into a title you want... :D

Last edited by Refresh/Reload (2007-09-20 08:04:14)

sheeberi
» n00b
FTalk Level: zero
6
0
1969-12-31

Re: [quote]the trick still works... but due to some friendster module updates your addbox function must be replaced by an updated newBox. see some post by JacktheRipper... (use [b]Search[/b] nav above)[/q

Now I got it. Thank u so much! but how come it's arranged in 2 columns now instead of 3?? What part should i edit???
Refresh/Reload
» FTalkAddict
FTalk Level: zero
332
0
1969-12-31

Re: [quote]the trick still works... but due to some friendster module updates your addbox function must be replaced by an updated newBox. see some post by JacktheRipper... (use [b]Search[/b] nav above)[/q

[quote=sheeberi]Now I got it. Thank u so much! but how come it's arranged in 2 columns now instead of 3?? What part should i edit???[/quote] Did you use the css that i provided at the 1st post mam? if you do... maybe it has some conflicts on your main css on friends box.... coz i see that ur using two column friends on your profile... This is my two column friends css code.. the one that i use before that don't conflicts on the Friend Randomizer css... [quote]//TWO COLUMN FRIENDS .flogrid75, .flogrid50 { margin:10px 10px 10px 40px; } .flogrid75 .flogriditem { width: 88px; } .flogrid75 { zoom: 1; } .ir { background: transparent; text-align: center; overflow: hidden; } .dr { text-align: center; background: #000000; padding: 3px 0; border-top: 0px solid #000000; } .flogrid75 .ir { width: 85px; height: 85px; } .flogrid75 .ir img { margin: 0 auto; height: 85px; }[/quote] and if you wanna compress some boxes... to avoid having a wide profile u can use these css mam.. [quote]/*SCROLLABLE MORE ABOUT ME BOX*/ #content_moreabout_1_5{ padding: 2px 2px 2px 2px; overflow: auto; width: 98%; height: 370px; background-color:transparent; background-image:url(URL OF BACKGROUND); background-attachment: scrollable; background-repeat: repeat; background-position: center center; border: 2px solid #b22222; } /*CUSTOMIZED COMMENTS BOX*/ #publiccomments_1_7 div div .dtd { width:100%; } #publiccomments_1_7 div div .dtd ul { padding: 2px 2px 2px 2px; overflow: auto; text-align:center; background-color:transparent; background-image:url(URL OF BACKGROUND); background-repeat: repeat; background-position: center; background-attachment: scrollable; border: 1px solid #cc9966; width: 350px; height: 100px; } and use this for the whole comments box especially if you want to cut your table... #publiccomments_1_7{ background-color:transparent; background-image:url(URL OF BACKGROUND); background-attachment: scrollable; background-repeat: repeat; background-position: center center; border: 2px solid #b22222; [b]height: ???px;[/b] }[/quote] that's what i'm using on my profile... just edit the sizes, colors(hexcode) at your liking mam... and don't forget to delete the codes you're replacing. :D

Last edited by Refresh/Reload (2007-09-20 19:52:04)

aBBy413
» n00b
FTalk Level: zero
79
0
1969-12-31

Re: [quote]the trick still works... but due to some friendster module updates your addbox function must be replaced by an updated newBox. see some post by JacktheRipper... (use [b]Search[/b] nav above)[/q

is dis working n ff?? my sidebar is a mess.. before my friends s in 1 column.. tried ur 2 column friends.. my randomizer got 2 columns also & d images s quite big.. wat should i do??
gatekeeper
» n00b
FTalk Level: zero
70
0
1969-12-31

Re: [quote]the trick still works... but due to some friendster module updates your addbox function must be replaced by an updated newBox. see some post by JacktheRipper... (use [b]Search[/b] nav above)[/q

nice code keep up the good work =) =) :thumbsup:
  • ARCHIVES 
  • » [quote]the trick still works... but due to some friendster module updates your addbox function must be replaced by an updated newBox. see some post by JacktheRipper... (use [b]Search[/b] nav above)[/q

Pages: 1234567..7

Board footer

© 2024 F Talk

Current time is 06:23

[ 10 queries - 0.034 second ]
Privacy Policy