Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

FLVs not loading

New Here ,
Jul 25, 2008 Jul 25, 2008
I have a list of buttons that, when clicked, should play a specific FLV, and display dynamic text. The FLV Playback component instance name is music_FLVPlybk. I load everything using the code below.

The first time I click a button, the flv plays fine. When I click a second button, I just get a buffering bar forever. The flv doesn't play.

A guesses what I'm doing wrong?

Thanks,
David
TOPICS
ActionScript
500
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Jul 25, 2008 Jul 25, 2008
This is the way I work with videos.
Each video is in a differente frame.
Name you FLV playback like movie1, movie2, etc.
You may have a frontpage that links to each video or place a button on the keyframe where you want specific video to play. For example, on movie1, place a button. On movie2, place another button.

The code below is used assuming you customized your video controller.
// in a MovieClip named Video Controller insert a play, pause and stop buttons and a slider//

stop();

import mx.video.*;
movi1.contentPath = "EditedFlash/Text_Edited.flv";
movi1.playButton = VideoControl.my_playButton;
movi1.pauseButton = VideoControl.my_pauseButton;
movi1.stopButton = VideoControl.my_stopButton;
movi1.seekBar=VideoControl.my_seekButton;

var cuePt:Object = new Object ();
cuePt.time =0.5;// title - no voice//
cuePt.name = "Pt1";
cuePt.type = "actionscript";
movi1.addASCuePoint(cuePt);
movi1.addASCuePoint(3.2, "Pt2");
var listenerObject:Object = new Object();
listenerObject.cuePoint = function(eventObject:Object): Void{
if(eventObject.info.name=="Pt1"){
_root.Texto.gotoAndStop("uno");
};
if(eventObject.info.name=="Pt2"){
_root.Texto.gotoAndStop("dos");
};

}
movi1.addEventListener("cuePoint", listenerObject);
//second cue point//
movi1.addEventListener("cuePoint", listenerObject);
listenerObject.complete = function(eventObject:Object):Void {
_root.Texto.gotoAndStop("uno");
}
movi1.addEventListener("complete", listenerObject);


Hope this helps.
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Jul 25, 2008 Jul 25, 2008
LATEST
Many times when I get lost FLVs its due to the first one not getting properly cleared out. So, even though I've changed the content path, it doesn't really unload.

I do everything on one frame, but I sometimes "attach" an FLV player from the library when called, and then when I switch to another movie, unload the whole player and re-run the attach function to make sure everything has really cleared out.

-Greg Neumayer
antifreezedesign.com
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines