Public Voice Network
- Five redesign ;( 9494
- Cravendale birthday art c… 11
- Future Milk design compet… 88
- ffffound invite, trade fo… 1212
- Befriends with Milla 88
- Splice Youtube Clips 66
- creative review 2929
- how many of your ex-compa… 2222
- new karborn ism 11
- Hedge 2020
- CAMERAWAR 66
- Politics 18791879
- OSX Dock Clutter 1414
- Fathers 1616
- blog 2717727177
- Webpage to a4 print ?? 44
- Website review 88
- Iphone Mail 1515
- Drive By 11
- Mccain I"M NOT your … 99
- macs on gumtree (london) 88
- Cadbury font? 66
- No idea wether this is ho… 88
- EC: Art for Obama 2424
Filter
flash question Oct 3, 08, 4:17 a.m.
I am working on a little flash file and can not get this video to stop looping! I thought netStream.loop(false); would handle it but it does not. What am i doing wrong?
Thanks for your help.
var netConn:NetConnection = new NetConnection();
netConn.connect(null);
var netStream:NetStream = new NetStream(netConn);
netStream.onStatus = function(infoObject) {
if (infoObject.code == "NetStream.Play.Stop") {
netStream.seek(0);
netStream.play.stop();
}
};
myVideo.attachVideo(netStream);
netStream.setBufferTime(0);
netStream.play("");
