Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

swf::buttonrecord(3pm) [debian man page]

.::SWF::ButtonRecord(3pm)				User Contributed Perl Documentation				 .::SWF::ButtonRecord(3pm)

NAME
SWF::ButtonRecord - SWF Button Helper Class SYNOPSIS
use SWF::ButtonRecord; use SWF::Button; use SWF::Constants qw(:Button); # create button and a shape here.. # and then: $buttonrecord = $button->addCharacter($my_shape, SWFBUTTON_DOWN); $buttonrecord->scale(0.5,0.5); $buttonrecord->move(50,50); DESCRIPTION
Adding a character shape to an object of SWF::Button class will give you access to an SWF::ButtonRecord object. This is useful for further changes by using the declared methods below. So SWF::ButtonRecord objects are a comparable counterpart to SWF::Displayitem objects. Just like them there is no constructor method available. METHODS
$buttonRecord->moveTo($x, $y) Move ButtonRecord to ($x, $y). $buttonRecord->move($x, $y) Displace ButtonRecord by ($x, $y). $buttonRecord->scaleTo($x ,$y) Set ButtonRecord scale to $x in the x-direction and $y in the y-direction. $buttonRecord->scale($x ,$y) Multiply ButtonRecord scale by $x in the x-direction and $y in the y-direction. $buttonRecord->rotateTo($degrees) Set ButtonRecord rotation to $degrees. $buttonRecord->rotate($degrees) Rotate ButtonRecord by $degrees. $buttonRecord->skewX($x) Add $x to the current x-skew. $buttonRecord->skewXTo($x) Set x-skew to $x. 1.0 is 45-degree forward slant. More is more forward while less is more backward. $buttonRecord->skewY($y) Add $y to the current y-skew. $buttonRecord->skewYTo($y) Set y-skew to $y. 1.0 is 45-degree upward slant. More is more upward while less is more downward. $buttonRecord->setDepth($depth) Set Z-order of ButtonRecord to $depth. $buttonRecord->setBlendMode($mode) Set an alternative blend mode instead of default alpha blend. Possible modes are SWFBLEND_MODE_NORMAL, SWFBLEND_MODE_LAYER etc. $buttonRecord->addFilter($filter) Process the ButtonRecord object thru a prepared filter: an object of SWF::Filter class, e.g. BlurFilter or DropShadowFilter. Filters are available since player version 8. AUTHOR
developers of ming ming.sourceforge.net, Albrecht Kleine SEE ALSO
SWF, SWF::Button, SWF::DisplayItem, SWF::Filter, SWF::Movie, SWF::MovieClip perl v5.14.2 2011-10-26 .::SWF::ButtonRecord(3pm)

Check Out this Related Man Page

.::SWF::Bitmap(3pm)					User Contributed Perl Documentation				       .::SWF::Bitmap(3pm)

NAME
SWF::Bitmap - Bitmap class SYNOPSIS
use SWF::Bitmap; $bitmap = new SWF::Bitmap('filename'); $fill = $shape->addBitmapFill($bitmap); DESCRIPTION
SWF::Bitmap enables you to add JPG, PNG, GIF and DBL files. It is a helper class most useful for filling shapes (i.e. SWF::Shape objects). DBL files ('Define Bitmap Lossless') may be produced from PNG or GIF files by using png2dbl or gif2dbl tools. METHODS
$bitmap = new SWF::Bitmap($filename, [$alpha]) Creates a new SWF::Bitmap object using 'filename'. The alpha parameter represents a filename for opacity data ('alpha' channel), but only for JPG files. Alpha data files are produced by tool gif2mask. The original GIF used for gif2mask input file containing alpha information should have same dimensions (width x height) as the JPG file. $bitmap = newBitmapFromFileHandle($filehandle) Creates a new SWF::Bitmap object using an open file handle $filehandle . This way you could use STDIN, piped data etc. etc. for input. A simple example: open (PICT,'flowers.jpg') or die; $bmp = newBitmapFromFileHandle SWF::Bitmap(PICT); # ..... $m->save("my_flowers.swf"); close (PICT); # Please note: do not close the PICT file too early. $bitmap = newSWFDBLBitmap SWF::Bitmap($filename) Creates a new SWF::Bitmap object using DBL file. Use this constructor if you have a file with DBL data, but not with .dbl filename extension. $bitmap = newSWFJpegBitmap SWF::Bitmap($filename) Creates a new SWF::Bitmap object using JPG file. Use this constructor if you have a file with JPG data, but not with .jpg or .jpeg filename extension. $bitmap = newSWFJpegWithAlpha SWF::Bitmap($filename,$alpha_filename) Creates a new SWF::Bitmap object using JPG file similar newSWFJpegBitmap() with additional opacity information in 'alpha' file. Use this constructor if you have a file with JPG data, but not with .jpg or .jpeg filename extension and if there is opacity information available in 'alpha_filename' file. Alpha data files are produced by gif2mask tool. The original GIF file containing alpha information used for gif2mask input should have same dimensions as the JPG file. $width = $bitmap->getWidth(); Returns width of bitmap in pixels. $height = $bitmap->getHeight(); Returns height of bitmap in pixels. AUTHOR
Soheil Seyfaie (soheil@netcom.ca), Albrecht Kleine and developers of ming.sourceforge.net SEE ALSO
SWF, SWF::Fill, SWF::Shape, SWF::Button, SWF::Constants, png2dbl, gif2dbl, gif2mask perl v5.14.2 2011-10-26 .::SWF::Bitmap(3pm)
Man Page