flash - How can I parse data from .swf file? -


i'm trying develop application parse data .swf (i want able read fields flash file) how can achieve this? or impossible ?

you can use swf::parser

ex:

use swf::parser; $parser = swf::parser->new( 'header-callback' => \&header, 'tag-callback' => \&tag); # parse binary data $parser->parse( $data ); # or parse swf file $parser->parse_file( 'flash.swf' ); 

check here: http://search.cpan.org/~ysas/swf-file-0.42/lib/swf/parser.pm


Comments

Popular posts from this blog

javascript - backbone.js Collection.add() doesn't `construct` (`initialize`) an object -

php - Get uncommon values from two or more arrays -

Adding duplicate array rows in Php -