« Back to slideshowpro.net
SlideShowPro Help Wiki
Recent changes / Search

SlideShowPro for Flash

SlideShowPro for Lightroom

SlideShowPro Director

SlideShowPro Director Hosting

SlideShowPro ThumbGrid

Extras

Screencasts

Page last modified by tdominey on November 12, 2008, at 07:01 PM

Event Object Type: net.slideshowpro.slideshowpro.SSPVideoEvent
SSPVideoEvent.type property = net.slideshowpro.slideshowpro.SSPVideoEvent.VIDEO_METADATA
Language Version: ActionScript 3.0
Player Version: Flash Player 9.0.0.0

Dispatched when and if video metadata is available.

Properties

PropertyValue
bubblesfalse
cancelablefalse; there is no default behavior to cancel.
metadataObject containing the video metadata.

Example

The following example displays all the metadata that's embedded in a video:

import net.slideshowpro.slideshowpro.*;    
function onVideoEvent(event:SSPVideoEvent) {    
   if (event.type=="videoMetadata") {    
      for (var prop in event.metadata) {
		  trace (prop + " = " + event.metadata[prop]);
	  }
   }    
}     
my_ssp.addEventListener(SSPVideoEvent.VIDEO_METADATA, onVideoEvent);


© 2008 Dominey Design Inc. All Rights Reserved.
About | Contact | Privacy policy | License agreements