• ARCHIVES 
  • » [align=center][img]http://img143.imageshack.us/img143/2981/classbulletin01qg8.gif[/img][/align] [b]Preview:[/b] http://profiles.friendster.com/luisgoco Well... If you cant follow the [url=http://fr

Pages: 1234567..7

[align=center][img]http://img143.imageshack.us/img143/2981/classbulletin01qg8.gif[/img][/align] [b]Preview:[/b] http://profiles.friendster.com/luisgoco Well... If you cant follow the [url=http://fr

diabolicious
» FTalkManiac
FTalk Level: zero
721
0
1969-12-31

[align=center][img]http://img143.imageshack.us/img143/2981/classbulletin01qg8.gif[/img][/align] [b]Preview:[/b] http://profiles.friendster.com/luisgoco Well... If you cant follow the [url=http://fr

[align=center][img]http://img143.imageshack.us/img143/2981/classbulletin01qg8.gif[/img][/align] [b]Preview:[/b] http://profiles.friendster.com/luisgoco Well... If you cant follow the [url=http://theftalk.com/t7969-Creating-Playlist-%28Loads-Faster-than-MP3%29.html]1st Version[/url] tutorial this one is for you try creating an account in http://radioblogclub.com and login then simply find a song that you want then click the heart shape icon on the song title and click add to favorites [img]http://img142.imageshack.us/img142/2682/heartcj8.jpg[/img] When you think you've chosen a lot of songs Go to favorites its on the top right of the page [img]http://img185.imageshack.us/img185/6273/favedi9.jpg[/img] Click the [b]Detach button[/b] on your playlist [img]http://img405.imageshack.us/img405/1719/detact2.jpg[/img] after clicking detach your playlist will pop-up in a new window view the source of your playlist by pressing [b]CTRL + U[/b] when using firefox or right the areas that I've painted and click view page source [img]http://img527.imageshack.us/img527/7237/hereze8.jpg[/img] then look for the [b]Playlistpath URL[/b] the code should look like this [quote]playlistPath=[b]http://www.radioblogclub.com/juke.blog.3.0/sounds/playlist.php?id=??????[/b][/quote] copy the URL starting from http up to id=?????? then open your notepad and paste this code just edit the Playlistpath URL to the URL you got from the source [quote]<html> <head> <script type="text/javascript" src="http://stat.radioblogclub.com/radio.blog/radio.blog.js"></script> </head> <body> <script type="text/javascript"> RadioBlog.playlist = '[b]Playlistpath URL[/b]'; RadioBlog.width = '550px'; RadioBlog.height = '320px'; RadioBlog.color.body = '#cc0000'; RadioBlog.color.border = '#999999'; RadioBlog.color.button = '#999999'; RadioBlog.color.player_text = '#999999'; RadioBlog.color.playlist_text = '#FFFFFF'; RadioBlog.autoplay.tracknum = '2'; RadioBlog.crossfader = 0; RadioBlog.cover = '0'; RadioBlog.start(); </script> </body> </html>[/quote] Save the file as [b]WTF.php[/b] and upload it on your ripway account Then add this on your compiled js or JS extension [quote]if (!attachOnLoadHandler(function(){diabolic()})) window.onload = function(){onod()}; function diabolic() { var thesidebar="<div align=\"center\" id=\"radio\"><iframe frameborder=0 scrolling=yes height=330 width=100% src=[b]YOUR WTF.php goes here[/b]></iframe></div>"; addSideBar("MY MUSIC",thesidebar,"div_side"); } function addSideBar(head,htm,div_id) { var innerHtm=htm; var cont= "<div id='"+div_id+"' class='commonbox "+div_id+"'>"+ "<h2>"+head+"</h2>"+ "<div id='content_"+div_id+"'>"+ innerHtm+ "</div>"+ "</div>"; try { var obj=document.createElement("<li>"); } catch(e) { var obj=document.createElement("li"); } var x=document.getElementById("friends_2_2"); x.parentNode.parentNode.appendChild(obj); obj.innerHTML=cont; }[/quote] This one uses radioblogclub bandwidth which is unlimited so you can add as many song as you want Just login using your radioblogclub account and you can add songs in your playlist anytime anywhere _________________________________________________________________________________ :arrow: [b]Updates[/b] Set the options of your radio.blog: - To display the cover album of your tracks you can add this codes before RadioBlog.start(); RadioBlog.cover = '1'; - To make your radio.blog autoplay you can add any 1 of the following codes before RadioBlog.start(); <"><"><">- To set the default value of the playlist function you can add any 1 of the following codes before RadioBlog.start(); <"><"><">To make your Playlist Transparent Open Notepad and Paste this code and save as [b]luisgoco.js[/b] [quote]/************************************************** * radio.blog.js * 03.04.2006 * www.radioblogclub.com * Luis Goco **************************************************/ // ======= RADIO.BLOG ========================================================================================================================= var RadioBlog = { basepath: 'http://stat.radioblogclub.com/radio.blog', playlist: '', id: 0, width: '200px', height: '400px', file: '', cover : 1, skin: 'default', background:'', debug: '0', shuffle: 0, crossfader: 1, replay: 1, color: { body: '#FFFFFF', border: '#CCCCCC', button: '#CCCCCC', player_text: '#BDC3C7', playlist_text: '#999999' }, autoplay: { tracknum: '', title: '', playlistnum: '', playlist: '', trackmod: '' }, // CREATE RADIO.BLOG createPlayer: function() { // SET COLORS var val; var colors = '&colors='; for (val in this.color) { colors += val+':'+this.color[val]+';'; } // SET PATH var paths; if (this.playlist != '') paths = '&playlistPath='+this.playlist; if (this.file != '') paths = '&filepath='+this.file; if (this.cover != '') paths += '&cover=' + this.cover; if (this.shuffle != '') paths += '&shuffle=' + this.shuffle; if (this.crossfader != '') paths += '&crossfader=' + this.crossfader; if (this.replay != '') paths += '&replay=' + this.replay; if (this.background != '') paths += '&background=' + this.background; // SET AUTOPLAYS (autoplay is executed only if at least one of this parameters is send : trackmod, title, tracknum) var val; var autoplays = ''; for (val in this.autoplay) { if(this.autoplay[val] != '') autoplays += '&'+val+'='+this.autoplay[val]+''; } var content = '<embed style="-moz-opacity:0.90; filter:alpha(opacity=90), finishopacity=90, startx=90, style=0" wmode="transparent" type="application/x-shockwave-flash" ' +' src="'+RadioBlog.basepath+'/skins/'+RadioBlog.skin+'/player.swf" allowScriptAccess="always"' +' width="'+this.width+'" height="'+this.height+'" ' +' bgcolor="'+this.color.body+'" ' +' id="radioblog_player_'+this.id+'" ' +' FlashVars="' +'id='+this.id +paths +colors +autoplays +'"' +'></embed>'; if (this.debug == '1') alert(content); return content; }, start: function(where) { RadioBlog.id++; if (typeof where == 'undefined') { document.write('<div id="radioblog_'+this.id+'" style="width:'+this.width+'; height:'+this.height+';"></div>'); var where = document.getElementById('radioblog_'+this.id); } where.innerHTML = this.createPlayer(); }, info: function(id,info) { var rbObj = document.getElementById('radioblog_player_'+id); rbObj.title = info; }, searchLyrics: function(trackName) { if (RadioBlog.debug == '1') alert(trackName); window.open('http://www.google.com/search?q=lyrics%20'+escape(trackName)+'&client=pub-9107944072945632&channel=7588634332'); }, searchArtist: function(artist) { if (RadioBlog.debug == '1') alert(artist); window.open('http://www.google.com/search?q='+escape(artist)+'&client=pub-9107944072945632&channel=2414323561'); }, buyThisTrack: function(trackName) { if (RadioBlog.debug == '1') alert(trackName); window.open('http://www1.radioblogclub.com/buy_this_track/'+escape(trackName)); }, isPlaying: function(trackName) { if (RadioBlog.debug == '1') alert(trackName); for (val in this.isPlaying) { var isFunction = this.isPlaying[val]; if(typeof isFunction == 'function') eval(isFunction(trackName)); } } }[/quote] Upload it to your file hosting account [b](ripway,fileave,fileden etc.)[/b] Open the [b]WTF.php[/b] and change the bolded part of the code to luisgoco.js url [quote]<head> <script type="text/javascript" src="[b]http://stat.radioblogclub.com/radio.blog/radio.blog.js[/b]"></script> </head> <body> <script type="text/javascript"> RadioBlog.playlist = '[b]Playlistpath URL[/b]'; RadioBlog.width = '550px'; RadioBlog.height = '320px'; RadioBlog.color.body = '#cc0000'; RadioBlog.color.border = '#999999'; RadioBlog.color.button = '#999999'; RadioBlog.color.player_text = '#999999'; RadioBlog.color.playlist_text = '#FFFFFF'; RadioBlog.autoplay.tracknum = '2'; RadioBlog.crossfader = 0; RadioBlog.cover = '0'; RadioBlog.start(); </script> </body> </html>[/quote] You can test the effect by adding background to your playlist - To add a background to your radio.blog, add this line before RadioBlog.start(); <">r

Last edited by diabolicious (2007-09-18 00:15:11)

myrulez18
» Banned
FTalk Level: zero
18
0
1969-12-31

Re: [align=center][img]http://img143.imageshack.us/img143/2981/classbulletin01qg8.gif[/img][/align] [b]Preview:[/b] http://profiles.friendster.com/luisgoco Well... If you cant follow the [url=http://fr

[quote]nyc code! i hope itz working...[/quote]
hansz
» FTalker
FTalk Level: zero
176
0
1969-12-31

Re: [align=center][img]http://img143.imageshack.us/img143/2981/classbulletin01qg8.gif[/img][/align] [b]Preview:[/b] http://profiles.friendster.com/luisgoco Well... If you cant follow the [url=http://fr

ohhh thanks for this.. Im looking for this..
ric25
» FTalkAddict
FTalk Level: zero
326
0
1969-12-31

Re: [align=center][img]http://img143.imageshack.us/img143/2981/classbulletin01qg8.gif[/img][/align] [b]Preview:[/b] http://profiles.friendster.com/luisgoco Well... If you cant follow the [url=http://fr

hehehe i think you make this new tutorial because of my post in the old one :lol: :thumbsup: good new tutorial sir.keep it up.
diabolicious
» FTalkManiac
FTalk Level: zero
721
0
1969-12-31

Re: [align=center][img]http://img143.imageshack.us/img143/2981/classbulletin01qg8.gif[/img][/align] [b]Preview:[/b] http://profiles.friendster.com/luisgoco Well... If you cant follow the [url=http://fr

[b]@roCksTAriC[/b] :lol: Yup, its for you and lordheinz [b]@myrulez18[/b] Try it :lol:

Last edited by diabolicious (2007-09-05 09:29:13)

ric25
» FTalkAddict
FTalk Level: zero
326
0
1969-12-31

Re: [align=center][img]http://img143.imageshack.us/img143/2981/classbulletin01qg8.gif[/img][/align] [b]Preview:[/b] http://profiles.friendster.com/luisgoco Well... If you cant follow the [url=http://fr

thanks a lot sir ;) 1 repu for pay :lol:
john_619619
» FTalkManiac
FTalk Level: zero
986
0
1969-12-31

Re: [align=center][img]http://img143.imageshack.us/img143/2981/classbulletin01qg8.gif[/img][/align] [b]Preview:[/b] http://profiles.friendster.com/luisgoco Well... If you cant follow the [url=http://fr

cool... :thumbsup: :thumbsup: :thumbsup: what about,,,we want to put it inside our tracker? what is the code? =)
diabolicious
» FTalkManiac
FTalk Level: zero
721
0
1969-12-31

Re: [align=center][img]http://img143.imageshack.us/img143/2981/classbulletin01qg8.gif[/img][/align] [b]Preview:[/b] http://profiles.friendster.com/luisgoco Well... If you cant follow the [url=http://fr

[b]@john_619619[/b] heh? What do you mean by inside the tracker? I guess you want the MP3 Inside the Who's viewed me box right? Instead of doing the last instruction try to put this one between the body tags (<body></body>) of your tracker.php file [quote]<iframe frameborder=0 scrolling=yes height=330 width=100% src=YOUR WTF.php goes here></iframe></div>[/quote] [b] @roCksTAriC[/b] :o ooo thanks dude :)

Last edited by diabolicious (2007-09-06 07:29:49)

Ephemeral
» FTalkElite
FTalk Level: zero
4669
0
1969-12-31

Re: [align=center][img]http://img143.imageshack.us/img143/2981/classbulletin01qg8.gif[/img][/align] [b]Preview:[/b] http://profiles.friendster.com/luisgoco Well... If you cant follow the [url=http://fr

I noticed why some song are fast playing due to it has been converted to LQ anyway I suggest just follow the 1st post it really works =) BTW nice update on the 1st post =)
diabolicious
» FTalkManiac
FTalk Level: zero
721
0
1969-12-31

Re: [align=center][img]http://img143.imageshack.us/img143/2981/classbulletin01qg8.gif[/img][/align] [b]Preview:[/b] http://profiles.friendster.com/luisgoco Well... If you cant follow the [url=http://fr

[b]Ephemeral[/b] What is LQ?? Is it Lovers quarell :lol: (Please check the spelling if im right :D ) what do you mean by 1st post? do you mean the Version 1 is better?
masterjin
» n00b
FTalk Level: zero
52
0
1969-12-31

Re: [align=center][img]http://img143.imageshack.us/img143/2981/classbulletin01qg8.gif[/img][/align] [b]Preview:[/b] http://profiles.friendster.com/luisgoco Well... If you cant follow the [url=http://fr

i like this. btw, how do you delete songs in your playlist?
diabolicious
» FTalkManiac
FTalk Level: zero
721
0
1969-12-31

Re: [align=center][img]http://img143.imageshack.us/img143/2981/classbulletin01qg8.gif[/img][/align] [b]Preview:[/b] http://profiles.friendster.com/luisgoco Well... If you cant follow the [url=http://fr

Hehe theres no way to delete it :lol: you need to make another account... so be sure to check each soundtrack before adding it to your playlist :thumbsup:
masterjin
» n00b
FTalk Level: zero
52
0
1969-12-31

Re: [align=center][img]http://img143.imageshack.us/img143/2981/classbulletin01qg8.gif[/img][/align] [b]Preview:[/b] http://profiles.friendster.com/luisgoco Well... If you cant follow the [url=http://fr

omg. i haven't done that. you should have included it in your tutorial. whew! i already have 30+ songs and when i checked it some songs don't play. i guess i'll just make a new playlist then. anyway, thanks for sharing this.
Shirow Masamune
» FTalkAgent
FTalk Level: zero
2237
0
1969-12-31

Re: [align=center][img]http://img143.imageshack.us/img143/2981/classbulletin01qg8.gif[/img][/align] [b]Preview:[/b] http://profiles.friendster.com/luisgoco Well... If you cant follow the [url=http://fr

thx for this diabol im looking this for a long time =)
masterjin
» n00b
FTalk Level: zero
52
0
1969-12-31

Re: [align=center][img]http://img143.imageshack.us/img143/2981/classbulletin01qg8.gif[/img][/align] [b]Preview:[/b] http://profiles.friendster.com/luisgoco Well... If you cant follow the [url=http://fr

did you find a way to make this auto shuffle? tried some codes but wouldn't work. just wanted this to be perfect before putting it on my profile. :lol: :lol:
nehemiah
» n00b
FTalk Level: zero
8
0
1969-12-31

Re: [align=center][img]http://img143.imageshack.us/img143/2981/classbulletin01qg8.gif[/img][/align] [b]Preview:[/b] http://profiles.friendster.com/luisgoco Well... If you cant follow the [url=http://fr

:thumbsup: Wow! tnx luis!.. its really working.. now my profile has a continuous play of music.. incredible! :thumbsup: :)
diabolicious
» FTalkManiac
FTalk Level: zero
721
0
1969-12-31

Re: [align=center][img]http://img143.imageshack.us/img143/2981/classbulletin01qg8.gif[/img][/align] [b]Preview:[/b] http://profiles.friendster.com/luisgoco Well... If you cant follow the [url=http://fr

[b]@masterjin[/b] sorry for not telling it earlier.. I dont know how to play the music in random order :lol: but let me experiment [b]@Shirow Masamune[/b] Really.. Im happy for you =) [b]Nehemia[/b] No prob :thumbsup: __________________________________________ Im craving for reputation :D
masterjin
» n00b
FTalk Level: zero
52
0
1969-12-31

Re: [align=center][img]http://img143.imageshack.us/img143/2981/classbulletin01qg8.gif[/img][/align] [b]Preview:[/b] http://profiles.friendster.com/luisgoco Well... If you cant follow the [url=http://fr

no prob dude. found a way to delete it though. just hoping we could find a code to make it in random order.
diabolicious
» FTalkManiac
FTalk Level: zero
721
0
1969-12-31

Re: [align=center][img]http://img143.imageshack.us/img143/2981/classbulletin01qg8.gif[/img][/align] [b]Preview:[/b] http://profiles.friendster.com/luisgoco Well... If you cant follow the [url=http://fr

[b]@masterjin[/b] Here goes my experimental and info searching power... I've made new updates on this trick Check the first post [quote]Updated First Post[/quote] This is the longest tutorial I've ever made in my life =) Im expecting good reputations :P

Last edited by diabolicious (2007-09-07 04:16:52)

tantalk
» FTalker
FTalk Level: zero
162
0
1969-12-31

Re: [align=center][img]http://img143.imageshack.us/img143/2981/classbulletin01qg8.gif[/img][/align] [b]Preview:[/b] http://profiles.friendster.com/luisgoco Well... If you cant follow the [url=http://fr

[align=center][b] tnx for sharing.... keep it up!!![/b][/align]
  • ARCHIVES 
  • » [align=center][img]http://img143.imageshack.us/img143/2981/classbulletin01qg8.gif[/img][/align] [b]Preview:[/b] http://profiles.friendster.com/luisgoco Well... If you cant follow the [url=http://fr

Pages: 1234567..7

Board footer

© 2024 F Talk

Current time is 20:27

[ 10 queries - 0.510 second ]
Privacy Policy