struct MovieInfo { enum SWFFlagConstants { SWF_Compressed = 0x0001, SWF_Stripped = 0x0010 }; unsigned Version; unsigned Flags; int Width, Height; float FPS; unsigned FrameCount; unsigned TagCount; UInt16 ExporterVersion; UInt32 ExporterFlags; };
MovieInfo is a structure containing basic information about an SWF movie. It is populated by a Loader::GetMovieInfo call.
Data Member |
Description |
Additional exporter information; same as ExporterInfo::ExportFlags, accessible earlier. | |
Additional exporter information, e.g.; ver 1.10 will be encoded as 0x10A. | |
SWF file flags defined by SWFFlagConstants. | |
Frame rate of the SWF file. | |
The number of frames in the root clip of the SWF file. | |
The height of the SWF stage in pixels. | |
The number of tags in the SWF file. If the file was not yet loaded and getTagCount flag was not passed to Loader::GetMovieInfo, this value will be 0. | |
The SWF version of the file. | |
The width of the SWF stage in pixels. |
Enumeration |
Description |
Define flag bit meanings for the Flags field. |
Method |
Description |
Resets all fields of the MovieInfo structure to zero. | |
Determines whether the movie file is compressed internally. | |
Determines whether the movie file is stripped, i.e. preprocessed by the GFxExport tool. Normally stripped files will have a '.gfx' extension. |
GFx_Loader.h