Hi again,
This may be a bit clearer
-------------
Hello all,
I am using the code below to load and display a wmv within a webpage:
All works well, but I am in need of a favour and help.
Background
The wmv file is 15Mb and my aim is for the user to be able to jump to different timeframes within this file using buttons/links on the page, outside the embeded player.
I.e
1. Introduction
2. Starters
3. Main course
4. Dessert
Can anyone help me in how to do this please?
Standlone code so far:
Code:
<style>
#contener {
text-align:left!important; /*For Firefox */
text-align:center; /* Center Element with IE */
width:100%;
}
#video-box {
border:1px solid black;
width:320;
height:255px;
margin:0 auto; /* Center Element with Firefox */
}
</style>
<img src="/NR/rdonlyres/3A8944BB-8EE8-4899-B515-C170CA01E4A0/0/ttl_Red_VideoTitle.gif" alt="Video Message"/><br>
<br>
<div id="contener">
<div id="video-box">
<object type="video/x-ms-wmv" data="/NR/rdonlyres/30FA1B3F-B9A5-40EF-8AFA-D98F62C0659D/0/20.wmv" width="320" height="255">
<param name="src" value="/NR/rdonlyres/30FA1B3F-B9A5-40EF-8AFA-D98F62C0659D/0/20.wmv">
<param name="autoStart" value="1">
alt : <a href="/NR/rdonlyres/30FA1B3F-B9A5-40EF-8AFA-D98F62C0659D/0/20.wmv">Download the video</a>
</object>
</div>
</div>
Bookmarks