I have recently recovered an FLV file, which has worked fine except that my video page went crazy! I had to delete a symbol with my original flvplayback component (wasn’t showing anything at all), so I made a new one, and I can’t see any video. You can hear the videos and click buttons to change the video…you can see the playback and control it…you just can’t see it and it’s the wrong size.
Clues: I tried putting the component into a movieclip, editing properties with the compnent inspector, and then attaching the movieclip. In the movie clip, the player resized for the correct dimensions, but on publish, it goes back to default? size (tiny…just the playback bar). I don’t have the site up because my server decided to wonk out, too.
I’m going nuts! My client needs this asap as the film came out today! Thanks in advance for any ideas that you have for me!
flvPlybk = textContainer.attachMovie("FLVPlayback", "flvPlybk", getRealDepth(textContainer), {_x:200, _y:200, _width:480, _height:204});
flvPlybk.setSize(300, 300);
flvPlybk.skin = "ArcticExternalPlaySeekMute.swf";
flvPlybk.autoPlay = false;
flvPlybk.bufferTime = 5;
var listenerObject:Object = new Object();
listenerObject.ready = function(eventObject:Object):Void {
flvPlybk.seekSeconds(5);
flvPlybk.play();
};
flvPlybk.addEventListener("ready", listenerObject);
flvPlybk.contentPath = "videos/trailer.flv";