Gnash 0.8.4 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Gnash 0.8.4 (Default branch)
# 1  
Old 10-14-2008
Gnash 0.8.4 (Default branch)

Gnash is a Flash movie player and Web browser plugin for Firefox, Mozilla, Konqueror, and Opera. Gnash supports many SWF v7 features and ActionScript3 classes. Gnash supports the majority of Flash opcodes up to SWF version 7, and a wide sampling of ActionScript classes for SWF version 8.5. Gnash also runs on many GNU/Linux distributions, embedded GNU/Linux, FreeBSD, NetBSD, OpenBSD, non x86-processors, and 64-bit architectures. There is also a standalone player for GNOME or KDE based desktops. License: GNU General Public License v3 Changes:
This release changes "Flash player" to "SWF player" throughout to accommodate Adobe trademarks. The popular SWF Twitter badge now renders correctly. Support for movies embedding multiple sound streams has been fixed. Support for loading PNG and GIF images has been added. Support for writing RGB/RGBA PNG images and JPEG images has been added. This release works with the Potlatch OpenStreetMap editor. There is a new 'flvdumper' utility for analyzing FLV video files. XPI packaging support for Mozilla and Firefox has been added. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
SWF(3pm)						User Contributed Perl Documentation						  SWF(3pm)

NAME
SWF - an autoloadable interface module for Ming - a library for generating ShockWave Flash format movies. SYNOPSIS
# Don't import other modules use SWF; # import all SWF modules use SWF qw(:ALL); # import SWF::Shape and SWF::Movie only. use SWF qw(Shape Movie); DESCRIPTION
By default, SWF doesn't import other SWF classes. You may, however, instruct SWF to import all modules by using the following syntax: use SWF qw(:ALL); METHODS
SWF::setScale($scale); Sets scale to $scale. SWF::getScale(); Get the current scale. 20 means 20 twips (1/20 of a pixel) and is the default value. SWF::setVersion($version); Sets SWF version for the header of flashfiles. Choose a value between 4 and 7 for your flashmovies. If you are unsure take 5. SWF::setCubicThreshold($num) Sets the threshold error for drawing cubic beziers. Lower is more accurate, hence larger file size. SWF::setSWFCompression($level); Set output compression level. Returns previous value. $level is integer between 0 and 9. Note: This function is called automatic too by $movie->save($filename[,$level]) and $movie->output([$level]) if the optional parameter $level is given. SWF::useConstants($flags); ? AUTHOR
Soheil Seyfaie (soheil at users.sourceforge.net). SEE ALSO
SWF.pm related modules: SWF::Action, SWF::Bitmap, SWF::Button, SWF::Constants, SWF::DisplayItem, SWF::Fill, SWF::Font, SWF::Gradient, SWF::Morph, SWF::Movie, SWF::MovieClip, SWF::PrebuiltClip, SWF::Shape, SWF::Sound, SWF::TextField, SWF::Text, SWF::VideoStream, SWF::Sprite other projects: SWF::Builder - a pure perl alternative to Ming perl v5.14.2 2012-03-05 SWF(3pm)