1

how would I display a buffering animation whilst a netsream object was downloading video data? using Actionscript 3.0 in Flash.

weltraumpirat
  • 22,544
  • 5
  • 40
  • 54
user559142
  • 12,279
  • 49
  • 116
  • 179

1 Answers1

2

Add an event listener for NetStatusEvent.NET_STATUS to the NetStream object, then use event.info to get the actual status, and react to either "NetStream.Buffer.Empty" or "NetStream.Buffer.Full".

There is a "how to use" example on the documentation page I linked to, which you can use to get started.

weltraumpirat
  • 22,544
  • 5
  • 40
  • 54