this is the code:

$flash = new SWFMovie;



also tried something like this:

$f = new SWFFont("fonts/Verdana.fdb");

$t = new SWFText();

$t->setFont($f);

$t->moveTo(200, 2400);

$t->setColor(0xff, 0xff, 0);

$t->setHeight(1200);

$t->addString("PHP generates Flash with Ming!!");

$m = new SWFMovie();

$m->setDimension(5400, 3600);

$m->add($t);

header('Content-type: application/x-shockwave-flash');

$m->output();

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to