hi all,
i'm trying to generate the
swf on the server so that i can load it into the flash.
the code in my
php file is as follows:
- PHP: Select all
<?php
$s = new SWFShape();
$s->setLine(20, 0xff, 0, 0);
$s->drawLineTo(400, 0);
$s->drawLineTo(400, 400);
$s->drawLineTo(0, 400);
$s->drawLineTo(0, 0);
?>
but it is giving me the following error
Fatal error: Cannot instantiate non-existent class: swfshape
so what shall i do for that?? which files should i include for that..
thanx in advance
regards
amit