
Event Object Type: net.slideshowpro.slideshowpro.SSPNetStreamEvent
SSPVideoEvent.type property = net.slideshowpro.slideshowpro.SSPNetStreamEvent.NET_STREAM_STATUS
Language Version: ActionScript 3.0
Player Version: Flash Player 9.0.0.0
Dispatched when NetStream status updates occur when using video. The status string that is passed as part of the event data is the same data broadcasted as part of the info property of the NetStatusEvent.
| Property | Value |
|---|---|
| bubbles | false |
| cancelable | false; there is no default behavior to cancel. |
| status | String containing the video metadata. |
The following example traces any status updates from NetStream when a video is used.
import net.slideshowpro.slideshowpro.*;
function onNetStreamStatus(event:SSPNetStreamEvent) {
trace(event.status);
}
my_ssp.addEventListener(SSPNetStreamEvent.NET_STREAM_STATUS, onNetStreamStatus);