I had a look at what you want and i have got it for you. The way it works is its displays a webpage in the selected area eg: his playlist is a page of its own as is each player so when you click on say....Video 1 it opens the page that has the player playing video 1.
How: Create a folder for your test player. you need to make four html pages.
1= index.html (main Page)
2= loading.html (preview Page)
3= playlist.html (playlist)
4= video1.html (video 1 page)
Codes: paste theese into said pages, change where required.index.html =
<!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>
<table border="0" cellspacing="5" cellpadding="0" class="main" align="center">
<tr>
<td align="center" valign="top"><table border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center"><img src="YOUR IMAGE URL" alt="" /></td>
</tr>
<tr>
<td align="center"><img src="YOUR IMAGE URL" alt="" /></td>
</tr>
</table>
<table border="0" align="center">
<tr>
<td valign="top"><form action="">
<table border="0" width="220" cellspacing='0' align="center" cellpadding="0">
<tr>
<td align="center"><table border="0" width="275" align="center" cellpadding="0" cellspacing="2" style="background-color: #35679a; color: #356795">
<tr>
<td><iframe src="playlist.html" name="playlist" width="100%" height="256" scrolling="Auto" frameborder="0" id="video_select">[Your user agent does not support frames or is currently configured not to display frames.]</iframe></td>
</tr>
</table></td>
<td> </td>
<td valign="top"><table border="0" width="283" align="center" cellpadding="0" cellspacing="2" style="background-color: #35679a; color: #356795">
<tr>
<td valign="top"><iframe src="loading.html" name="video_play" width="100%" height="256" scrolling="No" frameborder="0" id="video_play">[Your browser does not support frames or is currently configured not to display frames. Please use an up-to-date browser that is capable of displaying frames.]</iframe></td>
</tr>
</table></td>
</tr>
</table>
</form></td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>
- <!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>
- <table border="0" cellspacing="5" cellpadding="0" class="main" align="center">
- <tr>
- <td align="center" valign="top"><table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td align="center"><img src="YOUR IMAGE URL" alt="" /></td>
- </tr>
- <tr>
- <td align="center"><img src="YOUR IMAGE URL" alt="" /></td>
- </tr>
- </table>
- <table border="0" align="center">
- <tr>
- <td valign="top"><form action="">
- <table border="0" width="220" cellspacing='0' align="center" cellpadding="0">
- <tr>
- <td align="center"><table border="0" width="275" align="center" cellpadding="0" cellspacing="2" style="background-color: #35679a; color: #356795">
- <tr>
- <td><iframe src="playlist.html" name="playlist" width="100%" height="256" scrolling="Auto" frameborder="0" id="video_select">[Your user agent does not support frames or is currently configured not to display frames.]</iframe></td>
- </tr>
- </table></td>
- <td> </td>
- <td valign="top"><table border="0" width="283" align="center" cellpadding="0" cellspacing="2" style="background-color: #35679a; color: #356795">
- <tr>
- <td valign="top"><iframe src="loading.html" name="video_play" width="100%" height="256" scrolling="No" frameborder="0" id="video_play">[Your browser does not support frames or is currently configured not to display frames. Please use an up-to-date browser that is capable of displaying frames.]</iframe></td>
- </tr>
- </table></td>
- </tr>
- </table>
- </form></td>
- </tr>
- </table></td>
- </tr>
- </table>
- </body>
- </html>
loading.html=
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Loading Page</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<STYLE TYPE="text/css">
TD
{
FONT-SIZE: 8pt;
FONT-FAMILY: Verdana, Helvetica, Arial
}
body {
padding-top:0;
padding-bottom:0;
padding-left:0;
padding-right:0;
margin-top:0;
margin-bottom:0;
margin-left:0;
margin-right:0;
color: #EDEDDD;
background-color: #000000;
FONT-FAMILY: Trebuchet MS, Arial, Helvetica;
}
</style>
</head>
<body><br><br><br><br>
<div align="center">
<h1>PLEASE CHOOSE A VIDEO</h1>
</div>
</body>
</html>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <title>Loading Page</title>
- <meta http-equiv="content-type" content="text/html; charset=UTF-8">
- <STYLE TYPE="text/css">
- TD
- {
- FONT-SIZE: 8pt;
- FONT-FAMILY: Verdana, Helvetica, Arial
- }
- body {
- padding-top:0;
- padding-bottom:0;
- padding-left:0;
- padding-right:0;
- margin-top:0;
- margin-bottom:0;
- margin-left:0;
- margin-right:0;
- color: #EDEDDD;
- background-color: #000000;
- FONT-FAMILY: Trebuchet MS, Arial, Helvetica;
- }
- </style>
- </head>
- <body><br><br><br><br>
- <div align="center">
- <h1>PLEASE CHOOSE A VIDEO</h1>
- </div>
- </body>
- </html>
playlist.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="Expires" content="-1">
<title>Playlist</title>
<link href="l" rel="stylesheet" type="text/css">
<style type="text/css">
body {
padding-top:0;
padding-bottom:0;
padding-left:0;
padding-right:0;
margin-top:0;
margin-bottom:0;
margin-left:0;
margin-right:0;
}
</style>
</head>
<body>
<script language="JavaScript" type='text/javascript' src='js/sbar.js'></script>
<table align="center" border="0" width="100%" cellpadding="0" cellspacing="0"><tr>
<td style="width: 220px; font-family:verdana, arial, helvetica, sans-serif; font-size: 12px;"> Select from the list:
<ol>
<li><a onFocus="this.blur();" target="video_play" href="video1.html">Video One Baby!</a>
<li><a onFocus="this.blur();" target="video_play" href="video2.html">Video 2</a>
<li><a onFocus="this.blur();" target="video_play" href="video3.html">And So On</a>
</ol></td></tr></table>
</body>
</html>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
- <meta http-equiv="pragma" content="no-cache">
- <meta http-equiv="Expires" content="-1">
- <title>Playlist</title>
- <link href="l" rel="stylesheet" type="text/css">
- <style type="text/css">
- body {
- padding-top:0;
- padding-bottom:0;
- padding-left:0;
- padding-right:0;
- margin-top:0;
- margin-bottom:0;
- margin-left:0;
- margin-right:0;
- }
- </style>
- </head>
- <body>
- <script language="JavaScript" type='text/javascript' src='js/sbar.js'></script>
- <table align="center" border="0" width="100%" cellpadding="0" cellspacing="0"><tr>
- <td style="width: 220px; font-family:verdana, arial, helvetica, sans-serif; font-size: 12px;"> Select from the list:
- <ol>
- <li><a onFocus="this.blur();" target="video_play" href="video1.html">Video One Baby!</a>
- <li><a onFocus="this.blur();" target="video_play" href="video2.html">Video 2</a>
- <li><a onFocus="this.blur();" target="video_play" href="video3.html">And So On</a>
- </ol></td></tr></table>
- </body>
- </html>
video1.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>vIDEO 1 PAGE</title>
<style type="text/css">
body {
padding-top:0;
padding-bottom:0;
padding-left:0;
padding-right:0;
margin-top:0;
margin-bottom:0;
margin-left:0;
margin-right:0;
background-color: #eeeee0;
}
</style>
</head>
<body>
<object id="MediaPlayer1" CLASSID="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701"
standby="Loading Microsoft Windows® Media Player components..." type="application/x-oleobject" width="280" height="256">
<param name="fileName" value="your video here .wmv">
<param name="animationatStart" value="true">
<param name="transparentatStart" value="true">
<param name="autoStart" value="true">
<param name="showControls" value="true">
<param name="Volume" value="-450">
<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" src="YOUR VIDEO HERE.WMV" name="MediaPlayer1" width=280 height=256 autostart=1 showcontrols=1 volume=-450>
</object>
</body>
</html>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
- <title>vIDEO 1 PAGE</title>
- <style type="text/css">
- body {
- padding-top:0;
- padding-bottom:0;
- padding-left:0;
- padding-right:0;
- margin-top:0;
- margin-bottom:0;
- margin-left:0;
- margin-right:0;
- background-color: #eeeee0;
- }
- </style>
- </head>
- <body>
- <object id="MediaPlayer1" CLASSID="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701"
- standby="Loading Microsoft Windows® Media Player components..." type="application/x-oleobject" width="280" height="256">
- <param name="fileName" value="your video here .wmv">
- <param name="animationatStart" value="true">
- <param name="transparentatStart" value="true">
- <param name="autoStart" value="true">
- <param name="showControls" value="true">
- <param name="Volume" value="-450">
- <embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" src="YOUR VIDEO HERE.WMV" name="MediaPlayer1" width=280 height=256 autostart=1 showcontrols=1 volume=-450>
- </object>
- </body>
- </html>
Well there you go!! Any probs, let me know
info@britbox.co.uk or reply here if poss, (just joined today so dont know!
Embee