Flash Video
- Started
- Last post
- 19 Responses
- Meeklo
I'm trying to have a video loop as a background for a small site, I exported the loop from sorenson squeeze, on to an LFV that I'm loadaing from my SWF movie, which will hold the site.
How do I make the video loop to actually loop? it stops at the end and I can't seem to acess the FLV properties inside flash, and sorenson squeeze will only give me the option of making the movie loop if I export it as an swf.
I would appreciate any help..
thanks!
- Meeklo0
arrrrrrrrrrrriba!
- Sharif0
no stop action at the beginning or end?
- Meeklo0
well, if I knew how to edit the FLV directly in flash I could edit that, (if it has has it) but I don't know how to..
:(
anyone else?
- blackspade0
ive got a .flv inside a MC here and it just looped automatically :?
- Meeklo0
blackspade how did you made the flv?
- lvl_130
you can't edit flvs in flash.
not sure about the looping though sorry. did a search and it seems everyone is asking the same question but no one is solving : \
- davi-t0
put it inside a movieclip. do whatver you want after that . Add AS, tween the fucker, fade it in and out, make it bounce. oh, and you can make it loop too.
- Meeklo0
put it inside a movieclip. do whatver you want after that . Add AS, tween the fucker, fade it in and out, make it bounce. oh, and you can make it loop too.
davi-t
(Oct 3 05, 12:49)I tried that already, but the FLV is being called from the server to the flash movie, it looks like you need to tell the FLV to loop before importing it.. maybe not?
:(
- davi-t0
then put the FLV into its own FLA /SWF and load it via loadMovie();
- Mimio0
Create an object listerner that triggers a replay event after the last frame of the flv has been reached.
- Meeklo0
Create an object listerner that triggers a replay event after the last frame of the flv has been reached.
Mimio
(Oct 3 05, 13:03)I don;t know actions sctript, can this be done from the actions menu in flash?
- blackspade0
meek i just made it in Final cut then used Sorenson squeeze to export to .flv
then i have it inside a MC and its looping ?
- Meeklo0
black spade What is an MC?
I see the one on your site, that is exactly what I want to do..
:)
- UndoUndo0
MC = MovieClip
are you flash 8 or MX 2004?
- Meeklo0
oh right..
heheI'm in flash 8
and I imported the FLV as a server stream..
- Mimio0
netStream.onStatus = function(info) {
if (info.code == "NetStream.Play.Stop") {
netStream.seek(0);
netStream.play();
}
};
- UndoUndo0
are you using a built in player? if so you can add a cue point at the end of the video and i think the player will detect this and ask you what to do when it reaches that point
- UndoUndo0
mimio has it! :)
- Meeklo0
are you using a built in player? if so you can add a cue point at the end of the video and i think the player will detect this and ask you what to do when it reaches that point
UndoUndo
(Oct 3 05, 13:29)yes I am, but I don't want it to be a player, I just want this to be a looping background for the site
I import the flv as video, and is not asking me anything regarding cue points or loops :(