PDA

View Full Version : Quicktime and HTML


rissac
12-17-2001, 02:10 PM
I get my movie to play in my web development software which is dreamweaver when a preview it in the browser but when in publish the html page to the internet the movie wont play. The movie is on the webserver and I have quicktime installed for explorer and netscape. Could it be something wrong with HTML code? I've attached the html page and the embed tag is pointing to the right place. Code used below:

<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body bgcolor="#FFFFFF" text="#000000">
<embed src="../movies/Full_Press_1.mov" width="320" height="240" "Autoplay=False" pluginspage="http://www.apple.com/quicktime/download/">
</embed>
</body>
</html>

Mark
12-17-2001, 05:27 PM
remove the quotes around one part of that code and try. like this:

<embed src="../movies/Full_Press_1.mov" width="320" height="240" autoplay=False pluginspage="http://www.apple.com/quicktime/download/">
</embed>