TinyPortal

Development => Block Codes => Topic started by: rbh on January 04, 2006, 05:40:08 AM

Title: pop up streaming radio
Post by: rbh on January 04, 2006, 05:40:08 AM
i really liked the radio code but you couldn't change pages without it losing connection and rebuffering so i played around a bit and came up with this which is working great so far. when someone clicks on the link it loads the stream in a little popup box and continues playing while surfing through your site or where ever.

before doing anything you need to create html pages for each station, example, classicrock.html country.html hardrock.html etc. just open a text editor and paste this code into it.
<HTML>
<HEAD>
<TITLE></TITLE>
<EMBED SRC="http://www.streamaudio.com/stations/asx/KCFX_FM.asx"  HEIGHT="42" WIDTH="100%" AUTOSTART="TRUE">
</HEAD>
<BODY>


replace the url with a url of your musical choice. if you want the music to autoplay when popup loads then leave be, or replace TRUE with FALSE to make it so the play button will have to be pushed. now just save as whatever you want.html and continue this step for each station. when finished, upload these html files to your forum root directory.

now in tinyportal create a script box and title it Streaming Radio or whatever you chose then paste this code into the box.
<HTML>
<HEAD>
<TITLE></TITLE>

<SCRIPT language="JavaScript"><!--

function popup(url){
  cuteLittleWindow = window.open(url, "littleWindow", "location=no,width=320,height=200");
}

//--></SCRIPT>

</HEAD>
<BODY>

<A HREF="javascript:popup('name of your html file.html')">name for the link</A>
<BR><A HREF="javascript:popup('name of your html file.html')">name for the link</A>
</BODY>
</HTML>


just keep repeating the <BR><A HREF="javascript:popup('name of your html file.html')">name for the link</A> for each html file you have created. once completed you should have a block with links for all your radio stations.

if there is a better way, feel free to let me know. i know very little about any of this stuff like html, java and such and have spent the better part of this evening getting it to work right. if someone could show me how to be able to add code to look into a certain directory i would much rather have all the radio station html files in it rather then the root but i may figure it out soon. also, i dont know if this qualifies as a block code snippet so if not just move it wherever.


there is an update to try if you want the options in a drop down menu. look at page 2 of this thread.
Title: Re: pop up streaming radio
Post by: YahMan on January 05, 2006, 09:44:08 PM
Very good, it works like a charm!

~YM
Title: Re: pop up streaming radio
Post by: YahMan on January 05, 2006, 10:26:09 PM
Btw, if anyone likes to see this in action, go to my site.
click here (http://www.traffixboards.com/community/index.php) Remember, it's an adult site! The radio block is on the right.

~YM
Title: Re: pop up streaming radio
Post by: crip on January 06, 2006, 12:12:24 AM
Now thats a worth while Block snippet, thanks it works really good.

crip~
Title: Re: pop up streaming radio
Post by: PowerPyx on January 06, 2006, 01:42:22 AM
Sry,

but it seems to me not working correctly under firefox 1.5 ... cause i know that asx doesn't work with ff i set up a pls stream (winamp) but this doesn't work too.

with IE the asx streams are working fine but also stuck in trouble with the pls streams...

any ideas ?

Best Regards,
PowerPyx
Title: Re: pop up streaming radio
Post by: YahMan on January 06, 2006, 01:49:55 AM
All asx stations work fine in FF1.5. I also tried MP3 and pls, no problems there either.

~YM
Title: Re: pop up streaming radio
Post by: IchBin on January 06, 2006, 01:51:22 AM
YahMan, I cannot see your radio Block. Am I Blind? Maybe my eyes are wandering for some reason....:P

Seriously though, I can't find it.
Title: Re: pop up streaming radio
Post by: YahMan on January 06, 2006, 01:52:34 AM
I've set up my radioblock visible to guests, check for yourself. It's on the right under the clock.

~YM
Title: Re: pop up streaming radio
Post by: YahMan on January 06, 2006, 01:57:26 AM
You weren't blind, IchBin......;)

~YM
Title: Re: pop up streaming radio
Post by: YahMan on January 06, 2006, 02:09:02 AM
I'm working on MP3's to work in the same way as WMP files. I'll post the code as soon as I'm finished.

~YM
Title: Re: pop up streaming radio
Post by: rbh on January 06, 2006, 05:13:19 AM
powerpyx, i use firefox 1.5 and havent experienced problems of it not playing all sorts of streams. my wife who i havent convinced to switch to linux yet, has xp and i use her machine for testing alot of my trial and errors while building my site. her machine has played every one of the links thus far too, and i have tested with all the different streams i have found so far. i can't think of a reason the streams aren't working on your machines,  the only thing i could think is bad radio streams maybe? ???

other then the streams not working, does everything else work? do the links show on your site and a little popup box show when the links are clicked? does it show that it is trying to connect to the server? i know a few links i found took forever to connect while some connected quickly, so i just sorted out dead and slow loading links and saved all the quick loading ones to use.

yahman, i too have been working on getting mp3's to work, sorta like a jukebox block. lookin forward to what people come up with.
Title: Re: pop up streaming radio
Post by: PowerPyx on January 06, 2006, 12:15:48 PM
FF told me to have a plugin installed for asx streams, sry don't know where to find a ms plugin for FF. when i put a well checked pls link in the html file, ff just pop ups the little window but nothin else happens.

hm, then i think it's a fault of my ff settings ?

btw.. i checked my install also with IE, there as aspected no probs at all with asx streams.


Edit : you can have a look here : www.walschburger.com/rad_forum/index.php , on the left side under search is the radio block ;)

Title: Re: pop up streaming radio
Post by: IchBin on January 06, 2006, 02:58:06 PM
What is up with all you people hiding your radio blocks? Can't see that one either PowerPyx.
Title: Re: pop up streaming radio
Post by: PowerPyx on January 06, 2006, 04:26:01 PM
uups.... sry... here in germany we have something which is called gema (an institution which is comparable to the RIAA i think).. so they can go sometimes very crazy when you have setup a radio, even it's just a radiostation stream from third party...

ok turn it on for guests for the next 24 hours.
Title: Re: pop up streaming radio
Post by: crip on January 06, 2006, 05:12:11 PM
Here's mine, but it wont PopUp for ya unless you go to the forum. :)  Classic Rock (http://www.tnquad.us/forum/classicrock.htm)
Title: Re: pop up streaming radio
Post by: YahMan on January 06, 2006, 05:35:16 PM
Quote from: IchBinâââ,¬Å¾Ã,¢ on January 06, 2006, 02:58:06 PM
What is up with all you people hiding your radio blocks? Can't see that one either PowerPyx.

I'm not hiding anything! :tickedoff:

~YM ;)
Title: Re: pop up streaming radio
Post by: extacy on January 23, 2006, 09:45:16 AM
Great Job!!!!!!!!!!!!!!!

;)
Title: Re: pop up streaming radio
Post by: hawkeye on January 23, 2006, 05:51:18 PM
This was a great snippet. I really like the way mine turned out. Check it out at www.p3challenge.com
Title: Re: pop up streaming radio
Post by: rbh on February 03, 2006, 05:06:07 AM
ok, i have gotten a drop down menu to work and it should work with ie and firefox. i dont have a forum that isnt 1.1rc2 so i have no tiny portal to test with. :P let me know how it looks and works for you guys. with this code it creates a drop down menu with links pointing to the html files created with the original post i made. crip has a nice script but firefox users couldnt get it to work, so hopefully this will work for them.

in a script box add:
<script>
<!--

var windowDoPop

function go(whichURL) {
    windowDoPop=window.open(whichURL[whichURL.selectedIndex].value,'doPop','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=200,height=75');
    windowDoPop.focus();
}
//-->
</script>
Streaming Radio
<FORM>
<SELECT NAME="SelectURL" size="1">
<option value="http://thestegmanfamily.com/music_stations/country.html">Country</option>
</SELECT>
<INPUT TYPE="button" VALUE="go" onClick="go(this.form.SelectURL.options)">
</FORM>



where you see "streaming Radio", this is where you will name it on the site. this line, <option value="http://thestegmanfamily.com/music_stations/country.html">Country</option> is what you will add the links pointing to your html files. recreate this line for each html file you have. you can create a folder on your server called radiostations or whatever and place those html files there, then just add the url.

now, within the html files you had created you can add the station id to it. below is an example html file and you can see where i added the station id. when the little popup shows, it has the station name below the player.

<HTML>
<HEAD>
<TITLE></TITLE>
<EMBED SRC="http://ccri.eonstreams.com/ccri_mo_stlouis_ksd_fm.asf"  HEIGHT="42" WIDTH="100%" AUTOSTART="TRUE">
93.7 The Bull
</HEAD>
<BODY>
Title: Re: pop up streaming radio
Post by: elliel on February 16, 2006, 07:02:41 AM
where do you find the radio stations that give you the code?

I wondered if there were more to select from?
Title: Re: pop up streaming radio
Post by: elpvn on February 16, 2006, 07:19:53 AM
Quotewhere do you find the radio stations that give you the code ?

Not code, it's a radio station stream link, you can find at the  website of radio stations in your country :)
Title: Re: pop up streaming radio
Post by: rbh on February 17, 2006, 06:05:31 AM
Adult Contemporary   KJMK   93.9   Joplin, MO          http://magic939.com/                     http://www.streamaudio.com/stations/asx/KJMK_FM.asx
Adult Contemporary   KKDV   92.1   Walnut Creek, CA    http://kkdv.com/                         http://www.streamaudio.com/stations/asx/KKDV_FM.asx
Adult Contemporary   KKIQ  101.7   Pleasanton, CA      http://www.kkiq.com/                     http://www.streamaudio.com/stations/asx/KKIQ_FM.asx
Adult Contemporary   KLSY   92.5   Seattle, WA         http://www.mix925.com/                   http://www.streamaudio.com/stations/asx/KLSY_FM.asx
Adult Contemporary   KRAV   96.5   Tulsa, OK           http://mix96tulsa.com/                   http://www.streamaudio.com/stations/asx/KRAV_FM.asx
Adult Contemporary   KRTR   96.3   Honolulu, HI        http://www.krater96.com/                 http://www.streamaudio.com/stations/asx/KRTR_FM.asx
Adult Contemporary   KSSK   92.3   Honolulu, HI        http://www.ksskradio.com/main.html       http://www.streamaudio.com/stations/asx/KSSK_FM.asx
Adult Contemporary   KUIC   95.3   Vacaville, CA       http://www.kuic.com/                     http://www.streamaudio.com/stations/asx/KUIC_FM.asx
Adult Contemporary   WDUV  105.5   Tampa, FL           http://www.wduv.com/                     http://www.streamaudio.com/stations/asx/WDUV_FM.asx
Adult Contemporary   WEZN   99.9   Milford, CT         http://star999.com/                      http://www.streamaudio.com/stations/asx/WEZN_FM.asx
Adult Contemporary   WLHT   95.7   Grand Rapids, MI    http://www.wlht.com/                     http://www.streamaudio.com/stations/asx/WLHT_FM.asx
Adult Contemporary   WMMO   98.9   Orlando, FL         http://wmmo.com/                         http://www.streamaudio.com/stations/asx/WMMO_FM.asx
Adult Contemporary   WSB    98.5   Atlanta, GA         http://b985.com/                         http://www.streamaudio.com/stations/asx/WSB_FM.asx
Adult Contemporary   WTPI  107.9   Indianapolis, IN    http://www.wtpi.com/                     http://www.streamaudio.com/stations/asx/WTPI_FM.asx
Adult Contemporary   WTRV  100.5   Grand Rapids, MI    http://www.theriver-fm.com/              http://www.streamaudio.com/stations/asx/WTRV_FM.asx
Adult Contemporary   WVEZ  106.9   Louisville, KY      http://lite1069.com/                     http://www.streamaudio.com/stations/asx/WVEZ_FM.asx
Adult Contemporary   WWRM   94.9   Tampa, FL           http://949online.com/                    http://www.streamaudio.com/stations/asx/WWRM_FM.asx
Adult Contemporary   WXGL  107.3   Tampa, FL           http://1073theeagle.com/                 http://www.streamaudio.com/stations/asx/WXGL_FM.asx
Active Rock          KCJK  105.1   KansasCity, KS      http://www.1051jackfm.com/               http://www.streamaudio.com/stations/asx/KCJK_FM.asx
Active Rock          KISS   99.5   San Antonio, TX     http://kissrocks.com/                    http://www.streamaudio.com/stations/asx/KISS_FM.asx
Active Rock          WGRD   97.9   Grand Rapids, MI    http://www.wgrd.com/                     http://www.streamaudio.com/stations/asx/WGRD_FM.asx
Active Rock          WHDR   93.1   Miami, FL           http://93rock.com/                       http://www.streamaudio.com/stations/asx/WHDR_FM.asx
Active Rock          WRAT   95.9   Monmouth, NJ        http://www.wrat.com/                     http://www.streamaudio.com/stations/asx/WRAT_FM.asx
Active Rock          WZPL   99.5   Indianapolis, IN    http://www.wzpl.com/                     http://www.streamaudio.com/stations/asx/WZPL_FM.asx
Alternative          KAVA    IR    San Jose, CA        http://www.everybodysmusic.com/          http://www.streamaudio.com/stations/asx/KAVA_IR.asx
Alternative          KFMA   92.1   Tucson, AZ          http://www.kfma.com/                     http://www.streamaudio.com/stations/asx/KFMA_FM.asx
Alternative          KJQN  100.7   SaltLake City, UT   http://www.1031jack.com/                 http://www.streamaudio.com/stations/asx/KJQN_FM.asx
Alternative          KUCD  101.9   Honolulu, HI        http://www.star1019fm.com/main.html      http://www.streamaudio.com/stations/asx/KUCD_FM.asx
Alternative          KXRK   96.3   SaltLake City, UT   http://www.x96.com/                      http://www.streamaudio.com/stations/asx/KXRK_FM.asx
Alternative          WAVF   96.1   Charleston, SC      http://www.96wave.com/                   http://www.streamaudio.com/stations/asx/WAVF_FM.asx
Alternative          WDYL  101.1   Richmond, VA        http://y101rocks.com/                    http://www.streamaudio.com/stations/asx/WDYL_FM.asx
Alternative          WFNX  101.7   Boston, MA          http://www.fnxradio.com/                 http://www.streamaudio.com/stations/asx/WFNX_FM.asx
Alternative          WLIR  107.1   Nassua, NY          http://www.fmchannelcast.com/            http://www.streamaudio.com/stations/asx/WLIR_FM.asx
Alternative          WNNX   99     Atlanta, GA         http://www.99x.com/                      http://www.streamaudio.com/stations/asx/WNNX_FM.asx
Alternative          WSUN   97.1   Tampa, FL           http://97xonline.com/                    http://www.streamaudio.com/stations/asx/WSUN_FM.asx
Classic Rock         KCFX  101     Kansas City, KS     http://www.101thefox.net/                http://www.streamaudio.com/stations/asx/KCFX_FM.asx     
Classic Rock         KBDB   92.1   Sacramento, CA      http://www.bob921.com/                   http://www.streamaudio.com/stations/asx/KBDB_FM.asx
Classic Rock         KCMQ   96.7   Columbia, MO        http://www.kcmq.com/                     http://www.streamaudio.com/stations/asx/KCMQ_FM.asx
Classic Rock         KDBN   93.3   Dallas, TX          http://www.933thebone.com/               http://www.streamaudio.com/stations/asx/KDBN_FM.asx
Classic Rock         KJSR  103.3   Tulsa, OK           http://star103fm.com/                    http://www.streamaudio.com/stations/asx/KJSR_FM.asx
Classic Rock         KSAN  107.7   San Francisco, CA   http://www.1077thebone.com/              http://www.streamaudio.com/stations/asx/KSAN_FM.asx
Classic Rock         KXDG   97.9   Joplin, MO          http://www.bigdog979.com/                http://www.streamaudio.com/stations/asx/KXDG_FM.asx
Classic Rock         KZEP  104.5   San Antonio, TX     http://www.kzep.com/kzep/                http://www.streamaudio.com/stations/asx/KZEP_FM.asx
Classic Rock         WCSX   94.7   Detroit, MI         http://www.wcsx.com/                     http://www.streamaudio.com/stations/asx/WCSX_FM.asx
Classic Rock         WEFX   95.9   Norwalk, CT         http://thefoxonline.com/                 http://www.streamaudio.com/stations/asx/WEFX_FM.asx
Classic Rock         WFYV  104.5   Jacksonville, FL    http://rock105i.com/                     http://www.streamaudio.com/stations/asx/WFYV_FM.asx
Classic Rock         WHPT  102.5   Tampa, FL           http://theboneonline.com/                http://www.streamaudio.com/stations/asx/WHPT_FM.asx
Classic Rock         WHTQ   96.5   Orlando, FL         http://whtq.com/                         http://www.streamaudio.com/stations/asx/WHTQ_FM.asx
Classic Rock         WIMZ  103.5   Knoxville, TN       http://www.wimz.com/                     http://www.streamaudio.com/stations/asx/WIMZ_FM.asx
Classic Rock         WMMR   93.3   Philadelphia, PA    http://www.wmmr.com/                     http://www.streamaudio.com/stations/asx/WMMR_FM.asx
Classic Rock         WPLR   99.1   Milford, CT         http://wplr.com/                         http://www.streamaudio.com/stations/asx/WPLR_FM.asx
Classic Rock         WSFR  107.7   Louisville, KY      http://1077sfr.com/                      http://www.streamaudio.com/stations/asx/WSFR_FM.asx         
Classic Rock         WZLR   95.3   Dayton, OH          http://953zlr.com/                       http://www.streamaudio.com/stations/asx/WZLR_FM.asx
Classical Music      BEET    IR    San Francisco, CA   http://www.everybodysmusic.com/          http://www.streamaudio.com/stations/asx/BEET_IR.asx
Classical Music      WCLV  104.9   Cleveland, OH       http://www.wclv.com/home.php             http://www.streamaudio.com/stations/asx/WCLV_FM.asx
Classical Music      WLEN    IR    Ft.Lauderdale, FL   http://proteus.fau.edu/                  http://www.streamaudio.com/stations/asx/WLEN_IR.asx
Classical Music      WWFM   89.1   Trenton, NJ         http://www.wwfm.org/                     http://www.streamaudio.com/stations/asx/WWFM_FM.asx
Classic Country      KFTX   97.5   Corpus Christi, TX  http://www.kftx.com/                     http://www.streamaudio.com/stations/asx/KFTX_FM.asx
Classic Country      KRTY    IR    San Francisco, CA   http://www.everybodysmusic.com/          http://www.streamaudio.com/stations/asx/KRTY_IR.asx
Classic Country      KTHT   97.1   Houston, TX         http://countrylegends971.com/            http://www.streamaudio.com/stations/asx/KTHT_FM.asx
Classic Country      WOGK   93.7  Gainesville-Ocala,FL http://www.937kcountry.com/              http://www.streamaudio.com/stations/asx/WOGK_FM.asx
Country              KATI   94.3   Columbia, MO        http://www.kat943.com/                   http://www.streamaudio.com/stations/asx/KATI_FM.asx
Country              KCLR   99.3   Columbia, MO        http://www.clear99.com/                  http://www.streamaudio.com/stations/asx/KCLR_FM.asx
Country              KCYY  100.3   San Antonio, TX     http://y100fm.com/                       http://www.streamaudio.com/stations/asx/KCYY_FM.asx
Country              KEGA  101.5   SaltLake City, UT   http://www.1015theeagle.com/             http://www.streamaudio.com/stations/asx/KEGA_FM.asx
Country              KFWR   95.9   Fort Worth, TX      http://www.959theranch.com/home/         http://www.streamaudio.com/stations/asx/KFWR_FM.asx
Country              KIXQ  102.5   Joplin, MO          http://www.kix1025.com/                  http://www.streamaudio.com/stations/asx/KIXQ_FM.asx
Country              KKBQ   92.9   Houston, TX         http://kkbq.com/                         http://www.streamaudio.com/stations/asx/KKBQ_FM.asx
Country              KKCS  104.5   Colorado Springs,CO http://www.kkcscountry.com/              http://www.streamaudio.com/stations/asx/KKCS_FM.asx
Title: Re: pop up streaming radio
Post by: rbh on February 17, 2006, 06:05:49 AM
Country              KKYX  680am   San Antonio, TX     http://kkyx.com/                         http://www.streamaudio.com/stations/asx/KKYX_AM.asx
Country              KPLX   99.5   Dallas, TX          http://www.995thewolf.com/               http://www.streamaudio.com/stations/asx/KPLX_FM.asx
Country              KRTY   95.3   San Jose, CA        http://www.krty.com/                     http://www.streamaudio.com/stations/asx/KRTY_FM.asx
Country              KWEN   95.5   Tulsa, OK           http://k955fm.com/                       http://www.streamaudio.com/stations/asx/KWEN_FM.asx
Country              WFMS   95.5   Indianapolis, IN    http://www.wfms.com/                     http://www.streamaudio.com/stations/asx/WFMS_FM.asx
Country              WHKO   99.1   Dayton, OH          http://k99online.com/                    http://www.streamaudio.com/stations/asx/WHKO_FM.asx
Country              WKHK   95.3   Richmond, VA        http://k95country.com/                   http://www.streamaudio.com/stations/asx/WKHK_FM.asx
Country              WLFW   93.5   Evansville, IN      http://935thewolf.com/                   http://www.streamaudio.com/stations/asx/WLFW_FM.asx
Country              WNCB   97.3   Birmingham, AL      http://newcountry973.com/                http://www.streamaudio.com/stations/asx/WNCB_FM.asx
Country              WPTI  103.9   Louisville, KY      http://newcountry1039.com/               http://www.streamaudio.com/stations/asx/WPTI_FM.asx
Country              WWKA   92.3   Orlando, FL         http://k92fm.com/                        http://www.streamaudio.com/stations/asx/WWKA_FM.asx
Country              WYGY   96.5   Cincinnati, OH      http://www.965thestar.com/               http://www.streamaudio.com/stations/asx/WYGY_FM.asx
Country              WZZK  104.7   Birmingham, AL      http://wzzk.com/                         http://www.streamaudio.com/stations/asx/WZZK_FM.asx
Mainstream Rock      KIOL  103.7   Houston, TX         http://www.houstonrock1037.com/          http://www.streamaudio.com/stations/asx/KIOL_FM.asx
Mainstream Rock      WBAB  102.3   Nassau-Suffolk, NY  http://wbab.com/                         http://www.streamaudio.com/stations/asx/WBAB_FM.asx
Mainstream Rock      WDHA  105.5   Morris, NJ          http://www.wdhafm.com/new.htm            http://www.streamaudio.com/stations/asx/WDHA_FM.asx
Mainstream Rock      WTXM   95.7   Knoxville, TN       http://jackfmknoxville.com/              http://www.streamaudio.com/stations/asx/WTXM_FM.asx   
Smooth Jazz          CJZZ   99.1   Winnipeg, MB        http://www.coolfmwinnipeg.com            http://www.streamaudio.com/stations/asx/CJZZ_FM.asx
Smooth Jazz          KBZN   97.9   SaltLake City, UT   http://www.kbzn.com/                     http://www.streamaudio.com/stations/asx/KBZN_FM.asx
Smooth Jazz          KJLU   88.9   Jefferson City, MO  http://www.kjlu.com/                     http://www.streamaudio.com/stations/asx/KJLU_FM.asx       
Smooth Jazz          KWJZ   98.9   Seattle, WA         http://www.kwjz.com/                     http://www.streamaudio.com/stations/asx/KWJZ_FM.asx
Smooth Jazz          WSNC   90.5   Greensboro, NC                                               http://www.streamaudio.com/stations/asx/WSNC_FM.asx
News / Talk          KCBQ  1170am  San Diego, CA       http://www.kcbq.com/                     http://www.streamaudio.com/stations/asx/KCBQ_AM.asx         
News / Talk          KCMO   710am  Kansas City, KS     http://www.710kcmo.com/                  http://www.streamaudio.com/stations/asx/KCMO_AM.asx
News / Talk          KFMS   97.5   SaltLake City, UT   http://www.975fmtalk.com/                http://www.streamaudio.com/stations/asx/KFMS_FM.asx
News / Talk          KFNC   97.5   Houston, TX         http://www.fmnewschannel975.com/         http://www.streamaudio.com/stations/asx/KFNC_FM.asx
News / Talk          KKNW  1150am  Seattle, WA         http://www.newschannel1150.com/          http://www.streamaudio.com/stations/asx/KKNW_AM.asx
News / Talk          KLIF   570am  Dallas, TX          http://www.klif.com/                     http://www.streamaudio.com/stations/asx/KLIF_AM.asx
News / Talk          KRMG   740am  Tulsa, OK           http://krmg.com/                         http://www.streamaudio.com/stations/asx/KRMG_AM.asx
News / Talk          KSSZ   93.9   Columbia, MO        http://www.939theeagle.com/              http://www.streamaudio.com/stations/asx/KSSZ_FM.asx
News / Talk          KTGR  1580am  Columbia, MO        http://www.ktgr.com/                     http://www.streamaudio.com/stations/asx/KTGR_AM.asx
News / Talk          KWOS   950am  Columbia, MO        http://www.kwos.com/                     http://www.streamaudio.com/stations/asx/KWOS_AM.asx
News / Talk          KZRG  1310am  Joplin, MO                                                   http://www.streamaudio.com/stations/asx/KZRG_AM.asx
News / Talk          KZSB  1290am  Santa Barbara, CA   http://www.newspress.com/Top/index.jsp   http://www.streamaudio.com/stations/asx/KZSB_AM.asx
News / Talk          WDBO   580am  Orlando, FL         http://580wdbo.com/                      http://www.streamaudio.com/stations/asx/WDBO_AM.asx
News / Talk          WDUN   550am  Gainesville, GA     http://www.wdun.com/                     http://www.streamaudio.com/stations/asx/WDUN_AM.asx       
News / Talk          WHIO  1290am  Dayton, OH          http://1290whio.com/                     http://www.streamaudio.com/stations/asx/WHIO_AM.asx       
News / Talk          WIIL   95.1   Kenosha, WI         http://www.95wiilrock.com/               http://www.streamaudio.com/stations/asx/WIIL_FM.asx
News / Talk          WLRN   91.3   Miami, FL           http://www.wlrn.org/                     http://www.streamaudio.com/stations/asx/WLRN_FM.asx
News / Talk          WNFZ   94.3   Knoxville, TN       http://www.943thex.com/home.asp          http://www.streamaudio.com/stations/asx/WNFZ_FM.asx
News / Talk          WOKV   690am  Jacksonville, FL    http://wokv.com/                         http://www.streamaudio.com/stations/asx/WOKV_AM.asx
News / Talk          WRSH    IR    New York, NY        http://www.radiosoleil.com/              http://www.streamaudio.com/stations/asx/WRSH_IR.asx
News / Talk          WSB    750am  Atlanta, GA         http://wsbradio.com/                     http://www.streamaudio.com/stations/asx/WSB_AM.asx
News / Talk          WSBA   910am  York, PA            http://www.newsradio910.com/             http://www.streamaudio.com/stations/asx/WSBA_AM.asx
News / Talk          WWTN   99.7   Nashville, TN       http://www.997wtn.com/                   http://www.streamaudio.com/stations/asx/WWTN_FM.asx
News / Talk          WXNT  1430am  Indianapolis, IN    http://www.newstalk1430.com/             http://www.streamaudio.com/stations/asx/WXNT_AM.asx
Nostalgia            KIXI   880am  Seattle, WA         http://www.kixi.com/                     http://www.streamaudio.com/stations/asx/KIXI_AM.asx
Nostalgia            BBC     IR    San Francisco, CA   http://www.everybodysmusic.com/          http://www.streamaudio.com/stations/asx/BBC_IR.asx
Nostalgia            WQUN  1220am  Hamden, CT          http://www.quinnipiac.edu/x1353.xml      http://www.streamaudio.com/stations/asx/WQUN_AM.asx 
Oldies               KCMO   94.9   Kansas City, KS     http://www.949kcmo.com/                  http://www.streamaudio.com/stations/asx/KCMO_FM.asx
Oldies               WMOJ   94.9   Cincinnati, OH      http://www.mojo949.com/                  http://www.streamaudio.com/stations/asx/WMOJ_FM.asx
Oldies               KLDE  107.5   Houston, TX         http://klde.com/                         http://www.streamaudio.com/stations/asx/KLDE_FM.asx
Oldies               KONO  101.1   San Antonio, TX     http://kono1011.com/                     http://www.streamaudio.com/stations/asx/KONO_FM.asx
Oldies               KVLC  101.1   Las Cruces, NM      http://www.101gold.com/                  http://www.streamaudio.com/stations/asx/KVLC_FM.asx
Oldies               WFOX   97.1   Atlanta, GA         http://971theriver.com/                  http://www.streamaudio.com/stations/asx/WFOX_FM.asx
Oldies               WJGL   96.9   Jacksonville, FL    http://969theeagle.com/                  http://www.streamaudio.com/stations/asx/WJGL_FM.asx
Oldies               WKHL   96.7   Norwalk, CT         http://kool967.com/                      http://www.streamaudio.com/stations/asx/WKHL_FM.asx
Oldies               WRKA  103.1   Louisville, KY      http://wrka.com/                         http://www.streamaudio.com/stations/asx/WRKA_FM.asx
Oldies               WSOX   96.1   York, PA            http://www.961wsox.com/                  http://www.streamaudio.com/stations/asx/WSOX_FM.asx
Sports               KNBR   680am  San Francisco, CA   http://www.knbr.com/                     http://www.streamaudio.com/stations/asx/KNBR_AM.asx
Sports               KSLG  1380am  St. Louis, MO       http://www.1380espn.com/                 http://www.streamaudio.com/stations/asx/KSLG_AM.asx
Sports               KTCK  1310am  Dallas, TX          http://www.theticket.com/                http://www.streamaudio.com/stations/asx/KTCK_AM.asx
Sports               KWNX  1530am  Austin, TX                                                   http://www.streamaudio.com/stations/asx/KWNX_AM.asx
Sports               KZNS  1280am  SaltLake City, UT   http://www.1280thezone.com/              http://www.streamaudio.com/stations/asx/KZNS_AM.asx
Sports               WCNN   680am  Atlanta, GA         http://www.680thefan.com/home.html       http://www.streamaudio.com/stations/asx/WCNN_AM.asx                 
80's                 KHPT   106.9  Houston, TX         http://1069thepoint.com/                 http://www.streamaudio.com/stations/asx/KHPT_FM.asx
80's                 KXCL    92.1  Sacramento, CA      http://www.flash921.com/                 http://www.streamaudio.com/stations/asx/KXCL_FM.asx
80's                 WBPT   106.9  Birmingham, AL      http://birminghamseagle.com/             http://www.streamaudio.com/stations/asx/WBPT_FM.asx
80's                 WDPT    95.3  Dayton, OH          http://daytonspoint.com/                 http://www.streamaudio.com/stations/asx/WDPT_FM.asx
80's                 WMXQ   102.9  Jacksonville, FL    http://1029i.com/                        http://www.streamaudio.com/stations/asx/WMXQ_FM.asx
80's                 WPOI   101.5  Tampa, FL           http://1015thepoint.com/                 http://www.streamaudio.com/stations/asx/WPOI_FM.asx
Title: Re: pop up streaming radio
Post by: rbh on February 17, 2006, 06:09:58 AM
just copy and paste those into a txt file and pick which ones you want. i made the lists with music format, station id, location of the station, the station websites if they have one, and then the stream. if you see IR for the station id it means internet radio. these are all tested and working, websites too, but as with anything over the internet, they do have downtime here and there. hope this helps give you a few stations. ;)
Title: Re: pop up streaming radio
Post by: elpvn on February 17, 2006, 09:44:57 AM
Great ! RBH, thank for shareÃ,  ;D
Title: Re: pop up streaming radio
Post by: elliel on February 19, 2006, 12:33:40 AM
aaarggghhh  lol

I cant get this to work

I copied the code to make the html file, uploaded it to forum

put the little script box in a block, changed the file names, and it wont work :(

I get the radio to pop up but nothing happens when i press play?
Title: Re: pop up streaming radio
Post by: haktanir on February 19, 2006, 06:15:30 PM
Quote from: ello on February 19, 2006, 12:33:40 AM
aaarggghhh  lol

I cant get this to work

I copied the code to make the html file, uploaded it to forum

put the little script box in a block, changed the file names, and it wont work :(

I get the radio to pop up but nothing happens when i press play?
if u copied code as is, u dont have to press play. it should start by itself
some stations dont work for me, keep trying to see if there is one that will work
Title: Re: pop up streaming radio
Post by: elliel on February 19, 2006, 07:16:37 PM
i changed it to false so that you would have to press the button to play, I didnt want to scare anyone in case they were using it at work etc

I have tried at least 20 different stations and I'm getting nothing - including the one in your code :(

I will keep trying
Title: Re: pop up streaming radio
Post by: haktanir on February 19, 2006, 09:45:27 PM
no no it's not my code
but i installed it today without any probs
try testing it with both firefox and explorer
Title: Re: pop up streaming radio
Post by: PSPXavier on February 20, 2006, 01:56:00 AM
Does this support .psl?
Title: Re: pop up streaming radio
Post by: Gargoyle on February 20, 2006, 02:22:27 AM
This works really well... Thanks a ton for the radio list!! Very good list.. ;D
Title: Re: pop up streaming radio
Post by: PSPXavier on February 22, 2006, 12:07:42 AM
Quote from: PSPXavier on February 20, 2006, 01:56:00 AM
Does this support .psl?
I can't seem to get it to work...But I'd like to be sure... So no?
Title: Re: pop up streaming radio
Post by: criminalmind on February 22, 2006, 04:44:23 PM
Hey, anybody knows how to add to tinyportal a streaming radio station using the mms://something/blah protocol?
Title: Re: pop up streaming radio
Post by: crip on February 22, 2006, 04:50:05 PM
javascript maybe?
Title: Re: pop up streaming radio
Post by: elliel on February 22, 2006, 07:38:55 PM
I dont know why it didnt work the first time, but I got it working now - woohoo its so cool

I also (since Im aussie) got more stations for you from an australian list

http://lachlan.bluehaze.com.au/real-audio.html

This guy has a list of radio stations worldwide, split up by country, on his website

Hope you find something good

I recommend  Triple JJJ :)
Title: Re: pop up streaming radio
Post by: elliel on February 22, 2006, 09:04:52 PM
I got one more question

Can you only use the .asx links or do the others like .ram work too or is that just for people who have real player installed?

~thanks
Title: Re: pop up streaming radio
Post by: WebMasterZ on February 23, 2006, 12:14:21 AM
Heres a site with some nice uk asx radio links, but there are world stations on the left  :)

EDIT
DOH Blonde moment, here it is

http://www.live-radio.net/SearchResults.php3?OSt=Li&St=&OGen=Any&OCnt=Li&Cnt=united+kingdom&OFee=Any&OSta=Li&Sta=&OPag=10&OCit=Li&Cit=
Title: Re: pop up streaming radio
Post by: elliel on February 23, 2006, 04:31:36 AM
Quote from: beemer on February 23, 2006, 12:14:21 AM
Heres a site with some nice uk asx radio links, but there are world stations on the left  :)

Where are the asx links?  on what site?
Title: Re: pop up streaming radio
Post by: WebMasterZ on February 23, 2006, 10:56:24 AM
Quote from: ello on February 23, 2006, 04:31:36 AM
Quote from: beemer on February 23, 2006, 12:14:21 AM
Heres a site with some nice uk asx radio links, but there are world stations on the left  :)

Where are the asx links?  on what site?

Updated now sorry
Title: Re: pop up streaming radio
Post by: elliel on February 23, 2006, 02:49:20 PM
Sorry I still don't see anything unless you have to be a member, and I dont want to join, sorry,

I have another question for the guy who started the thread - rbh - or if anyone who knows how to do it, can answer

The little popup box

I have a little image that I would like to put in there above the radio console, how would I do that?

~thanks
Title: Re: pop up streaming radio
Post by: WebMasterZ on February 23, 2006, 03:35:10 PM
ello there is No membership required !
What do you see?
Title: Re: pop up streaming radio
Post by: rbh on February 23, 2006, 04:15:31 PM
ello........to add pictures and fully customize the popup, open the .html file you made for each of the stations and put the html code there. you can add pictures, background colors, and lots of other things just like a regular webpage. i have advertising banners, links back to my site and other sites, and am currently working on other things that hopefully when i get fully working correctly will be posted here in an updated first post rather then 5 pages deep.
Title: Re: pop up streaming radio
Post by: criminalmind on February 24, 2006, 02:56:41 PM
Quote from: criminalmind on February 22, 2006, 04:44:23 PM
Hey, anybody knows how to add to tinyportal a streaming radio station using the mms://something/blah protocol?

What I meant, was how to make radio links using the mms protocol work with the specific pop up radio code snippet. I tried adding mms radio stations but only .asx links seem to work...

EDIT: OK I solved the mms issue
Title: Re: pop up streaming radio
Post by: extacy on April 25, 2006, 04:05:58 AM
Not to resurrect the dead but is anyone else having issues with the pop up not working w/ FF or IE?



edit: ....fixed, not sure how???




THX GUYS!!!


Title: Re: pop up streaming radio
Post by: elliel on April 25, 2006, 12:54:42 PM
mine works ok in IE, FF and opera, but not for MAC users
Title: Re: pop up streaming radio
Post by: gundamzero on April 29, 2006, 10:30:25 PM
Does anyone know what the link would be for Delta Blues on live365?
http://www.live365.com/cgi-bin/directory.cgi?genre=delta%20blues
Title: Re: pop up streaming radio
Post by: Crip on April 30, 2006, 12:41:43 AM
Quote from: gundamzero on April 29, 2006, 10:30:25 PM
Does anyone know what the link would be for Delta Blues on live365?
http://www.live365.com/cgi-bin/directory.cgi?genre=delta%20blues

Could look here: http://www.cdtv.net/radio_tuner.html
Title: Re: pop up streaming radio
Post by: RoarinRow on July 08, 2006, 07:27:40 PM
Just installed this mod.  Very cool, thanks!   8)

Although it doesn't work for me for FireFox.  What plug in do you use?
Title: Re: pop up streaming radio
Post by: rbh on July 08, 2006, 11:31:05 PM
not sure why it isnt workin for you. i use firefox, and only use ie to test changes on the site with. i have had no problems with it not working.

whats not working for you, the popup or the streams? because some times the streams arent always online.
Title: Re: pop up streaming radio
Post by: RoarinRow on July 09, 2006, 12:27:19 AM
Quote from: rbh on July 08, 2006, 11:31:05 PM
not sure why it isnt workin for you. i use firefox, and only use ie to test changes on the site with. i have had no problems with it not working.

whats not working for you, the popup or the streams? because some times the streams arent always online.

When I use FF, the pop up window/tab says it could not find plug in and a button appears that says 'manual install'.  When I click on it I'm brought to FF plug in page, but it's not very self explanatory.  I installed a plug in for Windows Media Player, but nothing happened when I went to click back on streaming radio link.  Just same message about can't find plug in.
Title: Re: pop up streaming radio
Post by: rbh on July 09, 2006, 04:46:46 PM
i think ichbin posted a link somewhere around here that shows how to install media player plugin for firefox. i will see if i can find that link, but it seems maybe this is whats wrong.


found it

http://forums.mozillazine.org/viewtopic.php?t=206213
Title: Re: pop up streaming radio
Post by: Crip on July 09, 2006, 05:12:31 PM
Great..

if you have broadband test it here:
http://members.aol.com/jrzycrim01/mozilla/wmp/vidtest-HS.html
Title: Re: pop up streaming radio
Post by: RoarinRow on July 09, 2006, 05:16:29 PM
Quote from: rbh on July 09, 2006, 04:46:46 PM
i think ichbin posted a link somewhere around here that shows how to install media player plugin for firefox. i will see if i can find that link, but it seems maybe this is whats wrong.


found it

http://forums.mozillazine.org/viewtopic.php?t=206213

Thanks for the info, dang that's a lot of info.  I tried the xpi install, for my 1.05.04 FF version, but that didn't help.  I'll have to read the other links for more troubleshooting.
Title: Re: pop up streaming radio
Post by: Crip on July 09, 2006, 05:20:28 PM
[quote author=RoarinRow link=topic=1909.msg51812#msg51812
Thanks for the info, dang that's a lot of info.  I tried the xpi install, for my 1.05.04 FF version, but that didn't help.  I'll have to read the other links for more troubleshooting.
[/quote]


I read something about You made need to disable something 1st?
Title: Re: pop up streaming radio
Post by: Crip on July 09, 2006, 05:23:19 PM
this what it says?.. what is that anyway?

Full Step-By-Step Guide: Embedded Windows Media in Firefox

WARNING!! Before you install the ActiveX plugin, if you use the Adblock Extension, you must make sure that the setting for OBJ-TABS is disabled. Otherwise, your system will run almost any ActiveX control.
Title: Re: pop up streaming radio
Post by: Crip on July 09, 2006, 05:25:00 PM
Some one gets it installed, please share with us.:)
Title: Re: pop up streaming radio
Post by: RoarinRow on July 09, 2006, 06:04:38 PM
Quote from: crip on July 09, 2006, 05:23:19 PM
this what it says?.. what is that anyway?

Full Step-By-Step Guide: Embedded Windows Media in Firefox

WARNING!! Before you install the ActiveX plugin, if you use the Adblock Extension, you must make sure that the setting for OBJ-TABS is disabled. Otherwise, your system will run almost any ActiveX control.

Yup and saw that and I don't have this Adblock Extension.  Still checking . . .

Edit - so weird that it works on my other desktop running FF.  I didn't install any plug in  :o
Title: Re: pop up streaming radio
Post by: LeeD on August 16, 2006, 06:25:46 PM
sorta new to this and ty for this great script ;D

found my internet radio annoying at times with changing pages and refreshing everytime so i went ahead and used this code
works well ... pops up nps ie or firefox
i went about it differntly though , i just dropped my asx addy in there and my station pops up nps.....now can i add more stations this way or do i need to do html through ftp

ty

Quote<script>
<!--

var windowDoPop

function go(whichURL) {
    windowDoPop=window.open(whichURL[whichURL.selectedIndex].value,'doPop','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=200,height=75');
    windowDoPop.focus();
}
//-->
</script>
Streaming Radio
<FORM>
<SELECT NAME="SelectURL" size="1">
<option value="http://mfile.akamai.com/21875/live/reflector:45991.asx?bkup=45992">LongIsland Q104.3</option>
</SELECT>
<INPUT TYPE="button" VALUE="go" onClick="go(this.form.SelectURL.options)">
</FORM>
Title: Re: pop up streaming radio
Post by: LeeD on August 16, 2006, 06:36:32 PM
well figured that out on my own lol


all i did was copy the line


<option value="http://mfile.akamai.com/21875/live/reflector:45991.asx?bkup=45992">LongIsland

added another asx location , same line right underneath it and hence did that for as many radio stations i could find and works well

example

Quote<script>
<!--

var windowDoPop

function go(whichURL) {
    windowDoPop=window.open(whichURL[whichURL.selectedIndex].value,'doPop','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=200,height=75');
    windowDoPop.focus();
}
//-->
</script>
Streaming Radio
<FORM>
<SELECT NAME="SelectURL" size="1">
<option value="http://mfile.akamai.com/21875/live/reflector:45991.asx?bkup=45992">LongIsland Q104.3</option>
<option value="http://nick8.surfernetwork.com/Media/RWST.asx">WDST Rock</option>
</SELECT>
<INPUT TYPE="button" VALUE="go" onClick="go(this.form.SelectURL.options)">
</FORM>

Title: Re: pop up streaming radio
Post by: LeeD on August 16, 2006, 07:48:10 PM
example of more

Quote<script>
<!--

var windowDoPop

function go(whichURL) {
    windowDoPop=window.open(whichURL[whichURL.selectedIndex].value,'doPop','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=200,height=75');
    windowDoPop.focus();
}
//-->
</script>
Streaming Radio
<FORM>
<SELECT NAME="SelectURL" size="1">
<option value="http://mfile.akamai.com/21875/live/reflector:45991.asx?bkup=45992">LongIsland Q104.3</option>
<option value="http://nick8.surfernetwork.com/Media/RWST.asx">WDST Rock</option>
<option value="http://live.eonstreams.com/citadel_ny_binghamton_waal_fm.asf">WAAL Rock</option>
<option value="http://nick8.surfernetwork.com/Media/RWST.asx">RWST Rock</option>
<option value="http://a218.l1822742701.c18227.g.lm.akamaistream.net/D/218/18227/v0001/reflector:42701">WFXF Rock</option>
<option value="http://www.sri.ca/asx/bx93.asx">WBX93 Country</option>
<option value="http://winmedcdn.cbsig.net/infinity_KBEQ-FM">KBEQ Country</option>
<option value="http://live.eonstreams.com/citadel_ny_syracuse_wnss_am.asf">WNSS ESPN</option>
<option value="http://mfile.akamai.com/21875/live/reflector:45993.asx?bkup=45994">Z100 NY</option>
<option value="http://live.eonstreams.com/citadel_ny_buffalo_wedg_fm.asf">WEDG NY</option>
</SELECT>
<INPUT TYPE="button" VALUE="go" onClick="go(this.form.SelectURL.options)">
</FORM>
Title: Re: pop up streaming radio
Post by: daftdate on August 22, 2006, 11:12:05 AM
LeeD thanx for that script I finally have pop up radio streaming on my site with 29 stations for my students, ive been wanting to do this for ages as you guys all know how important it is to be able to listen to music in the background while you study so this will be great for students on my forum.  ;D  also i have a couple of more links if people are interested for uk radio stations.

http://www.radio-now.co.uk/listen_pop.htm

above has all sorts of radio stations as well as the pop

and

http://www.chrysalisradio.com/galaxy/listen/digital

These are all the Chrysalis radio stations that the company produce.  You can choose your station at the bottom and link directly to their own player page.  :)
Title: Re: pop up streaming radio
Post by: rbh on August 22, 2006, 06:02:02 PM
LeeD, the way you did it works fine. i just use the html way to make it much more customizable. in the html pop up window you can resize to whatever and place ads, links, background images, station id with a link to the station website, the list goes on. if you have no need for the cutomizing then simply place the streams directly into code like you did. thanks for posting the alternative script. :up:
Title: Re: pop up streaming radio
Post by: LeeD on August 22, 2006, 07:54:27 PM
that script worked easiet for me , although its probably not the best

way

cool , bit of a rookie so glad i could help

Title: Re: pop up streaming radio
Post by: jackboot on September 21, 2006, 10:35:02 PM
perfect.. it really works... thnks..
Title: Re: pop up streaming radio
Post by: guvenck on September 30, 2006, 06:42:32 PM
What if I want the radio to start upon page upload in a popup and not upon clicking on a link?