• Page 1 of 2
  • 1
  • 2
  • »
uCoz Community » Archives » Locked » How to make a radio panel to open in new blank page?
How to make a radio panel to open in new blank page?
ManiQc
Posts: 17
Reputation: 2

Message # 1 | 12:37 PM
?
iLee
Posts: 111
Reputation: 0

Message # 2 | 12:38 PM
Create a pae with the Radio Panels code as a .html page and then link it?
Use your brain before you post ~Lee
Please use search, ~Lee
ManiQc
Posts: 17
Reputation: 2

Message # 3 | 12:54 PM
Can you make one as example ?
Post edited by ManiQc - Monday, 2009-07-27, 12:55 PM
iLee
Posts: 111
Reputation: 0

Message # 4 | 1:08 PM
If you give me the code of the Radio Panel i'll make it for you.

But most pages would be like this (This is straight from Dreamweaver im too lazy to write it out.)

Quote
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>
<Radio Code here>
</body>
</html>

Open Notepad and copy and paste that into it,

Then you add the code for the Radio Panel where i've highlighted.

Then go to

File >> Save As > Name.html

Make sure you have the .html at the end, or it will just save as a text document,

Then upload it to your filemanager and the link should be

h ttp://yoursite.ucoz.com/name.html


Use your brain before you post ~Lee
Please use search, ~Lee
Post edited by iLee - Monday, 2009-07-27, 1:13 PM
ManiQc
Posts: 17
Reputation: 2

Message # 5 | 1:14 PM
Ok wait I will giwe you a radio panel code and how to insert a radio station?
iLee
Posts: 111
Reputation: 0

Message # 6 | 1:16 PM
You need to receive the Radio's HTML code from the host of the Radio Station.

If you don't know how to get the Radio Code i'll see if I can get it if you link me to the Radio's Host site.


Use your brain before you post ~Lee
Please use search, ~Lee
Post edited by iLee - Monday, 2009-07-27, 1:18 PM
ManiQc
Posts: 17
Reputation: 2

Message # 7 | 1:25 PM
This a code of radio panel Windows media player:)
Code
<OBJECT id="VIDEO" width="320" height="240"   
   style="position:absolute; left:0;top:0;"
   CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"
   type="application/x-oleobject">
     
   <PARAM NAME="URL" VALUE="your file or url">
   <PARAM NAME="SendPlayStateChangeEvents" VALUE="True">
   <PARAM NAME="AutoStart" VALUE="True">
   <PARAM name="uiMode" value="none">
   <PARAM name="PlayCount" value="9999">
</OBJECT>
and this is clsid:6BF52A52-394A-11D3-B153-00C04F79FAA6. if needed:) Radio station host is JavaBeats.FM
Post edited by ManiQc - Monday, 2009-07-27, 1:35 PM
iLee
Posts: 111
Reputation: 0

Message # 8 | 1:28 PM
Quote
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Radio Player</title>
</head>

<body>
<object id="VIDEO" width="320" height="240"
style="position:absolute; left:38px; top:48px; width: 373px; height: 280px;"
classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"
type="application/x-oleobject">
<param name="URL" value="your file or url" />
<param name="SendPlayStateChangeEvents" value="True" />
<param name="AutoStart" value="True" />
<param name="uiMode" value="none" />
<param name="PlayCount" value="9999" />
</object>
</body>
</html>

Change the part highlighted in blue to the URL.


Use your brain before you post ~Lee
Please use search, ~Lee
ManiQc
Posts: 17
Reputation: 2

Message # 9 | 1:35 PM
Look up I hawe link'd to radio host to get a code:)
iLee
Posts: 111
Reputation: 0

Message # 10 | 1:46 PM
http://www.mediafire.com/download.php?dtmdmmmnhey

That's the file,

Now open notepad and copy in this

Quote
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Radio Player</title>
</head>

<body>
<object id="VIDEO" width="320" height="240"
style="position:absolute; left:38px; top:48px; width: 373px; height: 280px;"
classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"
type="application/x-oleobject">
<param name="URL" value="/javabeats.asx" />
<param name="SendPlayStateChangeEvents" value="True" />
<param name="AutoStart" value="True" />
<param name="uiMode" value="none" />
<param name="PlayCount" value="9999" />
</object>
</body>
</html>

Then save it as Javabeats.html or Radio.html

Then the link will be

yoursite.ucoz.com/javabeats.html


Use your brain before you post ~Lee
Please use search, ~Lee
Post edited by iLee - Monday, 2009-07-27, 1:49 PM
ManiQc
Posts: 17
Reputation: 2

Message # 11 | 1:47 PM
Ok ty man is this code neede'd?
Code
http://relay02.javabeats.fm:8000
iLee
Posts: 111
Reputation: 0

Message # 12 | 1:51 PM
I just noticed javabeats.asx is the actual file with all the encoding so you don't need the HTML page for this, just upload javabeats.asx to your filemanager and go to

http://yoursite.ucoz.com/javabeats.asx


Use your brain before you post ~Lee
Please use search, ~Lee
Post edited by iLee - Monday, 2009-07-27, 1:55 PM
ManiQc
Posts: 17
Reputation: 2

Message # 13 | 2:13 PM
Oh ty man last question how to make player smaller?
Post edited by ManiQc - Monday, 2009-07-27, 2:16 PM
iLee
Posts: 111
Reputation: 0

Message # 14 | 2:24 PM
Uhhm, I don't know for asx, I'll try and find out,
Use your brain before you post ~Lee
Please use search, ~Lee
ManiQc
Posts: 17
Reputation: 2

Message # 15 | 2:45 PM
Man can you tell me is it posible to make that this radio plays and in Winamp?
uCoz Community » Archives » Locked » How to make a radio panel to open in new blank page?
  • Page 1 of 2
  • 1
  • 2
  • »
Search: