Making a movie for an .aspx.page

  • Thread starter Thread starter dario6647
  • Start date Start date
D

dario6647

I'm trying to built up a movie to be included in to an aspx page. The problem
I'm encountering is that when the movie is played on the browser it doesn't
start back again automatically. I couldn't find any option, in WMM whereby I
can specify the ciclyc replay once the movie has riched its end.
Any suggestion will be fully appreciated.
Thank's in advance.
 
I don't think there is anything you can do in WMM. I think all you can do is
use an <object> tag in your page to display the movie, and set the loop
parameter to true, like this:

<object type="video/x-ms-wmv" data="sample.wmv" width="320" height="285">
<param name="src" value="sample.wmv" />
<param name="autoplay" value="true" />
<param name="autostart" value="-1" />
<param name="loop" value="true" />
alt : <a href="sample.wmv">Click for movie</a>
</object>
 
Thank's for your reply.
I applied the sample provided, but the result isn't yet what I'd like to
achive.
The movie is correctly played but when it reaches its end it doesn't start
again, it stops on the first photogram and that's all.
For a further analysis I,m providing you my code:
<object id="obj1" align="left" border="0"
classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"
height="360" width="480" type="application/x-shockwave-flash" >
<param name="src" value="movie\openp.swf">
<param name="autostart" value="-1" />
<param name="autoplay" value="true">
<param name="loop" value="true">
<param name="Quality" value="High">
<param name="AllowFullScreen" value="false">
<embed height="360" name="obj1"
pluginspage="http://www.macromedia.com/go/getflashplayer"
src="movie/openp.swf"
width="480"></embed></object>
 
Back
Top