root/test/Movie/Background/test03-cxx.C

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. main

#include <mingpp.h>
#include <cstdlib>


main(){
        try {
                SWFMovie* m = new SWFMovie();


                // SWF_SETBACKGROUNDCOLOR 
                m->setBackground(0x00, 0x00, 0xff);

                // SWF_SHOWFRAME 
                m->nextFrame(); // end of frame 1 

                // SWF_END 

                m->save("test03.swf");
        }
        catch(SWFException &e)
        {
                std::cerr << "SWFException: " << e.what() << std::endl << std::endl;
                return EXIT_FAILURE;
        }
        return 0;
}

/* [<][>][^][v][top][bottom][index][help] */