CreateMovie

Creates a movie in AVI or WMV format from a FLY project presentation. The recorded movie can be played back using any standard AVI or WMV Viewer. Size is recommended to be aligned to 2.

 

JavaScript

 

CreateMovie(

       FrameSize,

       FramesPerSecond,

       HideOverlay)

 

C#

 

string CreateMovie(

       [in] int FrameSize,

       [in] int FramesPerSecond,

       [in] bool HideOverlay)

 

C++

 

HRESULT CreateMovie(

       [in] long FrameSize,

       [in] long FramesPerSecond,

       [in] VARIANT_BOOL HideOverlay)

Parameters

FrameSize

An integer that determines the size of each frame. The following are the possible values:

·          0 – 640x480 (NTSC Online)

·          1 – 768x576 (PAL Online)

·          2 – 720x480 (SD 480p)

·          3 – 1280x720 (HD 720p)

·          4 – 1920x1080 (HD1080p)

FramesPerSecond

The number of movie frames per second.

HideOverlay

A Boolean that determines whether HUD controls will be shown in the recorded movie. When set to FALSE, any HUD control that is visible during the creation of the movie will be shown in the movie as well. The presentation control will never be shown (even if HideScreenOverlays is set to FALSE).

Exceptions

See: HRESULT Return Values for a list of possible values returned by the HRESULT.