/* [<][>][^][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 "/test.ttf");
text->setFont( font);
text->setColor( 0, 0, 0, 0xff);
text->setHeight( 20);
text->moveTo(100,100);
text->addString( "The quick brown fox jumps over the lazy dog. 1234567890", NULL);
m->add(text);
m->nextFrame();
m->save("test02.swf");
}
catch (SWFException &e)
{
std::cerr << "SWFException: " << e.what() << std::endl << std::endl;
return EXIT_FAILURE;
}
return 0;
}