Richard Ragon
Guest
|
Posted:
Thu Dec 02, 2004 12:05 am Post subject:
Re: Need to directed an embedded wmv file to another page |
|
|
Ken wrote:
| Quote: | I have an embedded video in a Web page that is currently a Windows
Media Video (wmv). When the video is completed I need to direct the
browser to another page with a more information on the video. Is there
a way to do this?
This is how I embedded the video on the Web page:
EMBED SRC="video.wmv" WIDTH=320 HEIGHT=240 AUTOSTART="true"
Can I do this within the code of the Web page or do I have to edit the
movie file itself to achieve this. I have Premiere 6.5 and Windows
Video editor to work with.
Any help would be greatly appreciated.
Ken
|
<EMBED> is not a official HTML tag. It was an unofficial implementation
of Netscape years ago, and since been officiated. It's still used for
compatibility issues though.
The <OBJECT> tag should be use by common browsers that you'll find on
the market today.
As far as the video starting a new web page after it's played. Can't be
done with any players on the market, except with .FLV format. Which is
in flash mx 2004 pro. Videos created inside a Flash movie can have the
abilities to do events. Events can trigger just about anything from
sounds to browser DOM (controls).
-Richard |
|