flv, as3 flash help.
flv, as3 flash help.
Out of context: Reply #5
- Started
- Last post
- 15 Responses
- kult0
Of course you can loop an FLV :)
Create an event listener on your NetStream object, listening for NetStatusEvent.NET_STATUS. Have it point to a function like this:
function nsEvent(stats:NetStatusEvent) {
if(stats.info.code == "NetStream.Play.Stop") {
ns.seek(0);
}
}