enum VisitResourceMask { ResVisit_NestedMovies = 0x8000, ResVisit_Fonts = 0x01, ResVisit_Bitmaps = 0x02, ResVisit_GradientImages = 0x04, ResVisit_EditTextFields = 0x08, ResVisit_Sounds = 0x10, ResVisit_Sprite = 0x20, ResVisit_AllLocalImages = (ResVisit_Bitmaps | ResVisit_GradientImages), ResVisit_AllImages = (ResVisit_Bitmaps | ResVisit_GradientImages | ResVisit_NestedMovies) };
VisitResourceMask defines a set of resource mask flag bits passed as a visitMask argument to VisitResources. If a given flag bit is included in the visitMask, the corresponding resource types are included in the enumeration, otherwise they are ignored.
Members |
Description |
ResVisit_NestedMovies = 0x8000 |
Indicates that resources in the imported movies should also be enumerated. |
ResVisit_Fonts = 0x01 |
Font resources should be enumerated. |
ResVisit_Bitmaps = 0x02 |
Image resources with Resource::Use_Bitmap should be enumerated (See Resource::ResourceUse). These resources correspond to image shape fills used in the SWF/FLA files. |
ResVisit_GradientImages = 0x04 |
Image resources with Resource::Use_GradientBitmaps should be enumerated (See Resource::ResourceUse). These resources are created based on GradientParams during loading. |
ResVisit_EditTextFields = 0x08 |
Edit text field resources should be enumerated. |
ResVisit_Sounds = 0x10 |
Sound resources should be enumerated. |
ResVisit_Sprite = 0x20 |
Sprite resources should be enumerated. |
ResVisit_AllLocalImages = (ResVisit_Bitmaps | ResVisit_GradientImages) |
Combines ResVisit_Bitmaps and ResVisit_GradientImages. |
ResVisit_AllImages = (ResVisit_Bitmaps | ResVisit_GradientImages | ResVisit_NestedMovies) |
Combines ResVisit_Bitmaps, ResVisit_GradientImages and ResVisit_NestedMovies. |
GFx_Player.h