/* {{{ SWFAction
*/
/* {{{ proto void swfaction::__construct(string)
- Returns a new SWFAction object, compiling the given script */
+ Creates a new SWFAction object, compiling the given script */
PHP_METHOD(swfaction, __construct)
{
SWFAction action;
/* {{{ SWFBitmap
*/
/* {{{ proto void swfbitmap::__construct(mixed file [, mixed maskfile])
- Returns a new SWFBitmap object from jpg (with optional mask) or dbl file */
+ Creates a new SWFBitmap object from jpg (with optional mask) or dbl file */
PHP_METHOD(swfbitmap, __construct)
{
zval **zfile, **zmask = NULL;
/* {{{ SWFButton
*/
/* {{{ proto void swfbutton::__construct()
- Returns a new SWFButton object */
+ Creates a new SWFButton object */
PHP_METHOD(swfbutton, __construct)
{
SWFButton button = newSWFButton();
/* {{{ SWFFill
*/
/* {{{ proto void swffill::__construct()
- Returns a new SWFFill object */
+ Creates a new SWFFill object */
PHP_METHOD(swffill, __construct)
{
php_error_docref(NULL TSRMLS_CC, E_ERROR, "Instantiating SWFFill won't do any good- use SWFShape::addFill() instead");
/* }}} */
/* {{{ proto void swffont::__construct(string filename)
- Returns a new SWFFont object from given file */
+ Creates a new SWFFont object from given file */
PHP_METHOD(swffont, __construct)
{
zval **zfile;
/* {{{ SWFGradient
*/
/* {{{ proto void swfgradient::__construct()
- Returns a new SWFGradient object */
+ Creates a new SWFGradient object */
PHP_METHOD(swfgradient, __construct)
{
SWFGradient gradient = newSWFGradient();
/* {{{ SWFMorph
*/
/* {{{ proto void swfmorph::__construct()
- Returns a new SWFMorph object */
+ Creates a new SWFMorph object */
PHP_METHOD(swfmorph, __construct)
{
SWFMorph morph = newSWFMorphShape();
/* }}} */
/* {{{ proto void swfsound::__construct(string filename, int flags)
- Returns a new SWFSound object from given file */
+ Creates a new SWFSound object from given file */
PHP_METHOD(swfsound, __construct)
{
zval **zfile, **zflags;
/* {{{ SWFShape
*/
/* {{{ proto void swfshape::__construct()
- Returns a new SWFShape object */
+ Creates a new SWFShape object */
PHP_METHOD(swfshape, __construct)
{
SWFShape shape = newSWFShape();
/* {{{ SWFSprite
*/
/* {{{ proto void swfsprite::__construct()
- Returns a new SWFSprite object */
+ Creates a new SWFSprite object */
PHP_METHOD(swfsprite, __construct)
{
SWFMovieClip sprite = newSWFMovieClip();
/* {{{ SWFText
*/
/* {{{ proto void swftext::__construct()
- Returns new SWFText object */
+ Creates new SWFText object */
PHP_METHOD(swftext, __construct)
{
SWFText text = newSWFText2();
/* {{{ SWFTextField
*/
/* {{{ proto void swftextfield::__construct([int flags])
- Returns a new SWFTextField object */
+ Creates a new SWFTextField object */
PHP_METHOD(swftextfield, __construct)
{
zval **flags;