Flash Video Continuous Loop

  • Thread starter Thread starter smartalecktexan
  • Start date Start date
S

smartalecktexan

Using Flash for video on web page. This is working fine. BUT, the video goes
into a continuous loop mode and the LOOP flag is NOT set.

Anyone have any ideas?

Thanks/Smartalecktexan
 
Set the Flash parameters to not loop
<param name="loop" value="false">


--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
_____________________________________________


| Using Flash for video on web page. This is working fine. BUT, the video goes
| into a continuous loop mode and the LOOP flag is NOT set.
|
| Anyone have any ideas?
|
| Thanks/Smartalecktexan
 
Stefan - thanks for the speedy reply! BUT, that is exactly what we see in
the Frontpage view of the generted code.

<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="2" width="300" height="226">
<param name="movie" value="Videos/Dancing.swf">
<param name="quality" value="Medium">
<param name="loop" value="false">
<param name="salign" value="L">
<embed src="Videos/Dancing.swf"
pluginspage="http://www.macromedia.com/go/getflashplayer"
type="application/x-shockwave-flash" name="obj1" width="300" height="226"
quality="Medium" loop="false" salign="L"></object>
</p>

Any other suggestions?

Thanks!

Clarence Reece
 
Then your flash file is set to loop and you have to edit the flash swf or fla file itself

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
_____________________________________________


| Stefan - thanks for the speedy reply! BUT, that is exactly what we see in
| the Frontpage view of the generted code.
|
| <object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1"
| codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="2" width="300"
height="226">
| <param name="movie" value="Videos/Dancing.swf">
| <param name="quality" value="Medium">
| <param name="loop" value="false">
| <param name="salign" value="L">
| <embed src="Videos/Dancing.swf"
| pluginspage="http://www.macromedia.com/go/getflashplayer"
| type="application/x-shockwave-flash" name="obj1" width="300" height="226"
| quality="Medium" loop="false" salign="L"></object>
| </p>
|
| Any other suggestions?
|
| Thanks!
|
| Clarence Reece
|
|
| "Stefan B Rusynko" wrote:
|
| > Set the Flash parameters to not loop
| > <param name="loop" value="false">
| >
| >
| > --
| >
| > _____________________________________________
| > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > "Warning - Using the F1 Key will not break anything!" (-;
| > _____________________________________________
| >
| >
| > | > | Using Flash for video on web page. This is working fine. BUT, the video goes
| > | into a continuous loop mode and the LOOP flag is NOT set.
| > |
| > | Anyone have any ideas?
| > |
| > | Thanks/Smartalecktexan
| >
| >
| >
 
OK, one more if you dont mind. We use AVS to convert .FLA files to >SWF --
there is a setting for looping in AVS but we dont set it. How would we edit
..FLA or .SWF files??
 
You edit the FLA w/ Adobe Flash 8 or it's replacement
--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
_____________________________________________


| OK, one more if you dont mind. We use AVS to convert .FLA files to >SWF --
| there is a setting for looping in AVS but we dont set it. How would we edit
| .FLA or .SWF files??
|
| "Stefan B Rusynko" wrote:
|
| > Then your flash file is set to loop and you have to edit the flash swf or fla file itself
| >
| > --
| >
| > _____________________________________________
| > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > "Warning - Using the F1 Key will not break anything!" (-;
| > _____________________________________________
| >
| >
| > | > | Stefan - thanks for the speedy reply! BUT, that is exactly what we see in
| > | the Frontpage view of the generted code.
| > |
| > | <object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1"
| > | codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="2" width="300"
| > height="226">
| > | <param name="movie" value="Videos/Dancing.swf">
| > | <param name="quality" value="Medium">
| > | <param name="loop" value="false">
| > | <param name="salign" value="L">
| > | <embed src="Videos/Dancing.swf"
| > | pluginspage="http://www.macromedia.com/go/getflashplayer"
| > | type="application/x-shockwave-flash" name="obj1" width="300" height="226"
| > | quality="Medium" loop="false" salign="L"></object>
| > | </p>
| > |
| > | Any other suggestions?
| > |
| > | Thanks!
| > |
| > | Clarence Reece
| > |
| > |
| > | "Stefan B Rusynko" wrote:
| > |
| > | > Set the Flash parameters to not loop
| > | > <param name="loop" value="false">
| > | >
| > | >
| > | > --
| > | >
| > | > _____________________________________________
| > | > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > | > "Warning - Using the F1 Key will not break anything!" (-;
| > | > _____________________________________________
| > | >
| > | >
| > | > | > | > | Using Flash for video on web page. This is working fine. BUT, the video goes
| > | > | into a continuous loop mode and the LOOP flag is NOT set.
| > | > |
| > | > | Anyone have any ideas?
| > | > |
| > | > | Thanks/Smartalecktexan
| > | >
| > | >
| > | >
| >
| >
| >
 
Back
Top