From: siloart on
I am making a video that will enlarge to full screen using the new Actionscript
3 Flash CS3. There is no bufferTime in the Component Inspector for the
FLVPlayback Component. How do I increase the bufferTime for the component?

From: dzedward on
flvPlayback.bufferTime = Number(something);

that should do it.
p.s. flvPlayback would be the instance name of the component.
From: Nickels55 on
I thought that might be the answer, as it is the answer for the AS 2.0 way of doing it.
I figured the AS 3.0 equivalent would be something much more complicated and crazy.
From: dzedward on
ha, in most cases, it is much different, just so happens it isn't this time...
From: siloart on
It seems to be working. Thank you so much!