|
Flash CS4 Resources |
videoItem.exportToFLV()AvailabilityFlash CS4 Professional. UsagevideoItem.exportToFLV(fileURI) Parameters
ReturnsA Boolean value of true if the file is exported successfully; false otherwise. DescriptionMethod; exports the specified item to an FLV file. ExampleAssuming
that the first item in the Library is a video item, the following
code exports it as an FLV file:
var videoFileURL = "file:///C|/out.flv"; var libItem = fl.getDocumentDOM().library.items[0]; libItem.exportToFLV(videoFileURL); |