FLVplayback autoplay not working on slow connections

I have some FLVs that are on the stage of my SWF file. Their content path is loaded in via an XML file. I have the buffer set to 0, and autoplay set to “true”. On a faster connection everything seems fine, but when on a slower connection, the video buffers until fully downloaded and then it plays, even though buffer is set to zero. Has any one ever encountered this issue before? Any ideas or solutions?

Also, do I need to use the load() method instead?

/*////////////////////////////////////////////////////////////////
Load the video content paths
/////////////////////////////////////////////////////////////////*/
playback1.contentPath = getNodeValue(findNode(videos, "one"));


// Assign the mySeekBar instance to the flvPlayback instance
playback1.playPauseButton = playpause;
playback1.backButton = myrewind;
playback1.seekBar = seekbar_container.myseek;
playback1.bufferingBar = mybuffer;