Page load

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
kratos-2012
Forum Newbie
Posts: 4
Joined: Tue Aug 10, 2010 3:06 pm

Page load

Post by kratos-2012 »

The goal:

Page loads and quicktime plays then automaticlay loads next quicktime movie in line with it's own title text but not the whole page.

The code I have below: This code loads one QT after another in a loop, but no change in title of the clip.

I'm sure there is a way of doing it but I'm a newbie please help!

I am front end programmer I know some php and some javascript. Can anyone help thanks!

This is the HTML 5 code I have now:

Code: Select all

<!DOCTYPE HTML>
<html lang="es">
<head>
<meta charset="utf-8" />
<title></title>

</head>

<body id="index" class="home">



<section class="video_cont">
  
 <article style="float:left;width:460px;">

<p><h1>Clip 1</h1></p>
<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="460" height="360" codebase="http://www.apple.com/qtactivex/qtplugin.cab">
<param name="src" value="001.mov">
        <param name="controller" value="true">
        <param name="autoplay" value="true">
        <param name="qtnext1" value="<second.mov>T<myself>E<controller=true autoplay=true>">
        <param name="qtnext2" value="<third.mov>T<myself>E<controller=true autoplay=true>">
    <embed
        src="001.mov"
        width="460" height="360"
        controller="true"
        autoplay="true"
        qtnext1="<002.mov>T<myself>E<controller=true autoplay=true>"
        qtnext2=GOTO0
      
            
        pluginspage="http://www.apple.com/quicktime/download/">
    </embed>
</object>
  
  </article>


</body>
</html>
Last edited by Benjamin on Tue Dec 14, 2010 2:27 pm, edited 1 time in total.
Reason: Added [syntax=html] tags.
Post Reply