Hi SDaniel
After netStream.play("borg.flv"); you should pause the netStream -
netStream.pause();
Then once the marker is recognised/removed, call netStream.resume();
or netStream.pause(); where appropriate.
I always like to wait for a couple of seconds after the marker is
removed before pausing the video, that way you don't get a stutrtered
playback.
I also like to fade the video and sound in and out. I achieve this by
executing the following code every frame:
var videoVolumeTransform:SoundTransform = new SoundTransform();
videoVolumeTransform.volume = _volume;
_netStream.soundTransform = videoVolumeTransform;
I then just tween _volume as I tween the alpha of the video.