Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

swfmill(1) [debian man page]

SWFMILL(1)							   User Commands							SWFMILL(1)

NAME
swfmill - XML-based SWF (Shockwave Flash) processing tool SYNOPSIS
swfmill [options] <command> DESCRIPTION
swfmill is an xml2swf and swf2xml processor with import functionalities. It's most common use is the generation of asset libraries containing images (PNG and JPEG), fonts (TTF) or other SWF movies for use with MTASC- or haXe-compiled ActionScript, although swfmill can be used to produce both simple and complex SWF structures. * built around an XSLT/EXSLT processor (libxslt) * input and output of the XSLT transformation can be either XML or binary SWF * XSLT commands for importing PNG, JPEG, TTF and SWF, and for mapping SWF ID numbers * built-in "simple dialect" to support library creation and building simple SWFs swfmill is Free Software, written, maintained and (c) by Daniel Fischer (with contributions by Steve Webster and others) and released under the GNU General Public License (GPL). <command> is one of: swf2xml <in> [<out>] convert from SWF to XML. <in> is a single SWF file, or 'stdin' <out> is a single XML file, or (by default) 'stdout' xml2swf <in> [<out>] convert from XML to SWF. <in> is a single XML file, or 'stdin' <out> is a single SWF file, or (by default) 'stdout' simple <in> [<out>] convert from a movie definition file to SWF. <in> is a single XML file, or 'stdin' <out> is a single SWF file, or (by default) 'stdout' (for details, see README) xslt <xsl> <in> [<out>] transform <in> to <out> as described by <xsl>. <xsl> is the XSLT stylesheet, and can use the swft: extension. <in> must be some XML (depends on <xsl>) <out> is either SWF (when it ends in .swf) or XML, by default on 'stdout' <option>s are: -h print this help and quit --version print the version number and quit -v verbose output -V extra-verbose debugging output -d dump SWF data when loaded (for debugging) -e specify text encoding in SWF (for SWF 5 and earlier only; default: UTF-8). -n deactivate libxml network access SEE ALSO
You can find more information at http://swfmill.org/ E-mail bug reports to <dan@subsignal.org> swfmill 0.3.2 March 2012 SWFMILL(1)

Check Out this Related 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)
Man Page