Hello I was wondering how I would code my project to play different videos based on which link was pressed, while in the same object container my video player is.
How I have it set up is that the video player is embeded in the center of the screen
On the left side of the screen are links inside a table as such:
Link[Tutrorial1]
Link[Tutorial 2]
Tutorial 3 etc....
This is the code
</asp:Content>
<asp:ContentID="Content2"ContentPlaceHolderID="MainContent"runat="server">
<h2> Training Page </h2>
<divalign="center">
<h2> Training </h2>
<tableid="table1"border="1"align="left">
<tr>
<td>
<ahref="#"onclick=""('C:\Users\AKelly\Documents\00CIS462\Interactive Whiteboard Starter\InteractiveWhiteboard Starter\Tutorials\Video Content\Wildlife.wmv')">Wildlife</a>
</td>
</tr>
<tr>
<td>
</td>
</tr>
<tr>
<td>
Tutorial 3
</td>
</tr>
<tr>
<td>
Tutorial 4
</td>
</tr>
<tr>
<td>
Tutorial 5
</td>
</tr>
<tr>
<td>
Tutorial 6
</td>
</tr>
</table>
<objectid="Video"width="312px"height="248px"classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"viewastext>
<paramname="autoStart"value="False">
<paramname="URL"value=""/>
<paramname="enabled"value="True">
<paramname="balance"value="0">
<paramname="currentPosition"value="0">
<paramname="enableContextMenu"value="True">
<paramname="fullScreen"value="False">
<paramname="mute"value="False">
<paramname="playCount"value="1">
<paramname="rate"value="1">
<paramname="stretchToFit"value="False">
<paramname="uiMode"value="full">
</object>
</div>
Any help would be appreciated.