thanx for your reply, I fixed it.
I've put the
PHP Code:
var netCo:NetConnection = new NetConnection();
netCo.connect(null);
var netStr:NetStream = new NetStream(netCo);
on the _root of my fla. And changed the code like this:
PHP Code:
private function ladeFlv(dateiName:String){
_root.netStr.onStatus = function(infoObject) {
if (infoObject.code == "NetStream.Play.StreamNotFound") {
...
}
}
_root.videoFenster.attachVideo(_root.netStr);
_root.netStr.setBufferTime(5);
_root.netStr.play("./flv/"+dateiName);
}
I don't know why this works now, but it does...
anyhow I'm very interested to hear the reason,
if anyone knows?