http://dev.ultimareplenisher.com
Upon loading the flv stream and playing the movie, there is a strange "blink" of color in the video frame before an individual stream plays. Further, the color is random. Any thoughts on how to get rid of this? It's driving me nuts. Thanks in advance.
JB
PS--as a side note, I had to completely (and unintuitively) rig this flash movie timeline just to get them all to play visibly. It seemed that apparently, if the playhead has to reverse in the timeline, it either plays with no video (but audio) or loads the movie on a layer under the stage.
The color is NOT the background color (unless it just by mere chance happened to be those hex colors when you looked at it), in fact, the color changes randomly as you click around and load other movies. I actually wouldn't have as much of a problem with it being the background, but if you click around you'll notice you'll get brown sometimes, black, red, blue... literally, click from one to the next and you should see this. I've added a similar snippet of code already to the one you posted a while ago thinking the same thing. I am perplexed at this point, perhaps it is a shortcoming of in the flv format that cannot be fixed?
I am using Flash Player 9.
Windows XP, Firefox 1.5.0.4
Guess that's good news, eh? :thumb:
I don't know how you're loading the .flv files, but something like:
this.onEnterFrame = function() {
h = myMovie.getBytesLoaded();
i = myMovie.getBytesTotal();
if (i != 0 && h/i == 1) {
//play code
}
};
See, the runner 'blink' is green, the mom one is orange, etc... dunno how you missed that. ;)
#If you have any other info about this subject , Please add it free.# |