/* [<][>][^][v][top][bottom][index][help] */
DEFINITIONS
This source file includes following definitions.
- main
#include <mingpp.h>
#include <cstdlib>
int main()
{
try {
SWFMovie *m = new SWFMovie();
SWFText *text = new SWFText(1);
SWFFont *font = new SWFFont(MEDIADIR "/font01.fdb");
text->setFont( font);
text->setColor( 0, 0, 0, 0xff);
text->setHeight(10);
text->moveTo(10, 100);
text->addString( "The quick brown fox jumps over the lazy dog. 1234567890", NULL);
m->add(text);
m->nextFrame();
m->save("test01.swf");
}
catch(SWFException &e)
{
std::cerr << "SWFException: " << e.what() << std::endl << std::endl;
return EXIT_FAILURE;
}
return 0;
}