1SWF modules are manipulating FLASH(R) movie (SWF) files.
2This package contains:
3
4  SWF::Parser          - parsing and splitting SWF files into header and tags.
5  SWF::BinStream       - binary stream class for SWF.
6  SWF::Binstream::File - binary file stream for SWF.
7  SWF::BinStream::Codec::Zlib
8                       - zlib compress/decompress codec for SWF::BinStream.
9  SWF::Element         - representing each SWF tag and other sub element.
10  SWF::File            - making SWF file.
11
12See each POD for further information.
13
14NOTE
15
16SWF::File 0.20 or higher is not compatible with the previous version.
17See CHANGES and Element.pod.
18It is recommended to see SWF file format specifications version 6
19available from Macromedia site,
20http://www.macromedia.com/software/flash/open/licensing/fileformat/
21
22PREREQUISITE
23
24perl 5.6 or higher
25
26Data::TemporaryBag
27http://search.cpan.org/search?dist=Data-TemporaryBag
28
29INSTALLATION
30
31You install SWF modules by the usual method:
32
33  perl Makefile.PL
34  make
35  make test
36  make install
37
38The test script is too simple now.  Please try 'dumpswf.plx' and its output
39for various SWF files.
40
41SAMPLE SCRIPT
42
43dumpswf.plx parses a SWF file and converts it to a perl script
44that outputs the same SWF file.
45There are some samples in samples directory.
46
47COPYRIGHT
48    Copyright 2000-2004, Yasuhiro Sasama (ySas), <ysas@nmt.ne.jp>
49
50This library is free software; you can redistribute it and/or
51modify it under the same terms as Perl itself.
52
53
54