$czcionka = new SWFFont("Impact.fdb"); 
$tekst = new SWFText(); 
$tekst->setFont($czcionka); 
$tekst->moveTo(200,400); 
$tekst->setColor(0, 0xff, 0); 
$tekst->setHeight(200); 
$tekst->addString("Tekst jest nadspodziewanie atwy"); 
$klip = new SWFMovie(); 
$klip->setDimension(6400, 4800); 
$klip->add($tekst); 
header('Content-type: application/x-shockwave-flash'); 
$klip->output(); 
