Re: SWFText rotated
[email protected] (Wolfgang Hamann) Wed, 8 Oct 2003 06:40:42 +0200 (CEST)
| Newsgroups | gmane.comp.web.ming.general |
|---|---|
| Message-ID | <wolfgang-1031008064041.A136571@loopback> |
Hi,
for rotated text you would normally just create the text, add it to the movie, and rotate it
$t = new SWFText();
....
$t->addString("hart wie kruppstahl");
$i = $m->add($t);
$i->moveTo(500, 500);
$i->rotate(30);
Wolfgang