Ask a Question related to Macromedia Director Basics, Design and Development.
-
sgardner #1
How can I get my Flash video to stop looping and...
How can I get my Flash video to stop looping and play the same on all computers.
What I have is 4 introduction videos playing in different sections. The videos are free running and I don't want the user to be able to control them.
I think I need to put a stop at the end of each movie in flash.
But will this solve the play problem on slower or faster computers.
On slower computers the videos play slower and loops. On faster ones it plays the videos to fast.
It is also hard to know were the video ends since you can extend a cast on the Director timeline as much as you want.
Any thoughts would be great.
sgardner Guest
-
Stop a Looping .SWF
hi there, you can stop the flash movie from looping by adding the following param <param name="loop" value="false"> -
SWF movies- stop looping
Hi I have a SWF file and it I have it playing in a html page. I DO NOT want it to loop as after its done you go to a diffrent page. I have managed... -
How to stop looping
I am trying to create a banner to a web page. I have the flash movie created, but I cannot figure out how to get the animation to play once and then... -
stop a sound from looping
Can someone tell me how to stop a sound from looping. this is my script : onEnterFrame = function () { bus_mc._x += 20; wave_sound = new... -
MX Prof 2004 - Unable to stop movie from looping
Hello, My Flash document is a product demo and many subsequent scenes include AVI movie clips. My problem is that the AVIs keep looping and I... -
Rob Dillon #2
Re: How can I get my Flash video to stop looping and...
You can play the Flash file in a single frame if you like. You can also
control the loop of the Flash file from Director if you don't want to
go back into the file. Something like this will do both:
--------
property thisSprite
property thisFlashMember
property totalFrames
on beginSprite me
thisSprite = me.spriteNum
thisFlashMember = sprite(thisSprite).member.name
totalFrames = member(thisFlashMember).frameCount
member(thisFlashMember).loop = 0
end
on exitFrame me
go to the frame
if sprite(thisSprite).frame >= totalFrames then
-- the clip is finished, you can do something else
-- go to some new frame or marker
end if
end
----------
If your Flash file is playing at different speeds on different
computers then it is using more than it's fair share of the system's
resources. There are a number of tech notes on optimizing Flash
playback in Director. See what they have to say, you may find the
solution there.
--
Rob
_______
Rob Dillon
Team Macromedia
[url]http://www.ddg-designs.com[/url]
412-243-9119
[url]http://www.macromedia.com/software/trial/[/url]
Rob Dillon Guest



Reply With Quote

