Exemplo n.º 1
0
int main()
{
	SWFMovie *m;
	SWFShape *shape;
	SWFButton *b;
	SWFDisplayItem *item;
	SWFBlur *blur;
	SWFFilter *f;

	try {
		Ming_init();
		m = new SWFMovie(7);
		shape = new SWFShape();

		shape->setLine(4, 25, 0, 0, 128);
		shape->movePenTo(5, 5);
		shape->drawLineTo( 0, 10);
	
		blur = new SWFBlur(5,5,2);
		f = SWFFilter::BlurFilter(blur);

		b = new SWFButton();
		b->addShape(shape, SWFBUTTON_UP | SWFBUTTON_HIT | SWFBUTTON_OVER | SWFBUTTON_DOWN);
		item = m->add(b);
	
		item->addFilter(f);
		m->save("test01.swf");
	}
	catch (SWFException &e)
	{
		std::cerr << "SWFException: " << e.what() << std::endl << std::endl;
		return EXIT_FAILURE;
	}
	return 0;
}
Exemplo n.º 2
0
int main()
{
	try {
		SWFDisplayItem *d;
		SWFMovie *m = new SWFMovie();
		SWFButton *b = new SWFButton();
		SWFShape *s = new SWFShape();
		char buf[512];
	
		sprintf(buf, "_root.gotoAndStop(2);");

		s->setLine(2, 255, 0, 0, 255);
		s->drawCircle(20);
	
		b->addCharacter(s, SWFBUTTON_HIT|SWFBUTTON_UP|SWFBUTTON_DOWN|SWFBUTTON_OVER);
	
		b->addAction(new SWFAction(buf), SWFBUTTON_MOUSEUP);	

		d = m->add(b);
		m->add(new SWFAction("_root.stop();"));
		d->moveTo(100, 100);
		m->nextFrame();
	
		d->remove();
		b = new SWFButton();
		sprintf(buf, "_root.gotoAndStop(1);");
		b->addCharacter(s, SWFBUTTON_HIT|SWFBUTTON_UP|SWFBUTTON_DOWN|SWFBUTTON_OVER);
	
		b->addAction(new SWFAction(buf), SWFBUTTON_MOUSEDOWN);
		d = m->add(b);
		d->moveTo(50, 100);

		m->nextFrame();
		m->save("test01.swf");
	}
	catch(SWFException &e)
	{
		std::cerr << "SWFException: " << e.what() << std::endl << std::endl;
		return EXIT_FAILURE;
	}
	return 0;
}
Exemplo n.º 3
0
int main()
{
	try {
		SWFMovie *m = new SWFMovie(8);
		SWFGradient *g = new SWFGradient();

		g->addEntry(0, 0, 0, 0, 255);	
		g->addEntry(0.2, 0, 10, 0, 255);	
		g->addEntry(0.3, 110, 0, 10, 255);	
		g->addEntry(0.4, 20, 0, 0, 255);	
		g->addEntry(0.5, 0, 20, 0, 255);	
		g->addEntry(0.6, 0, 0, 20, 255);	
		g->addEntry(0.7, 30, 0, 0, 255);

		g->addEntry(0.8, 0, 30, 0, 255);	
		g->addEntry(0.9, 0, 0, 30, 255);		

		SWFFillStyle *fill = SWFFillStyle::GradientFillStyle(g, SWFFILL_LINEAR_GRADIENT);
		SWFShape *shape = new SWFShape();
		shape->useVersion(SWF_SHAPE4);
		shape->setRightFillStyle(fill);
	
		shape->setLine(1, 0,0,0,255);
		shape->drawLine(100, 0);
		shape->drawLine(0, 100);
		shape->drawLine(-100, 0);
		shape->drawLine(0, -100);

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

}