/usr/lib/perl5/SWF/Action.pm is in libswf-perl 1:0.4.4-1.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | # ====================================================================
# Copyright (c) 2000 by Soheil Seyfaie. All rights reserved.
# (c) 2009 Albrecht Kleine
# This program is free software; you can redistribute it and/or modify
# it under the same terms as Perl itself.
# ====================================================================
# $Author$
# $Id$
package SWF::Action;
use SWF ();
$SWF::Action::VERSION = $SWF::VERSION;
1;
__END__
=head1 NAME
SWF::Action - SWF action class
=head1 SYNOPSIS
use SWF::Action;
my $action = new SWF::Action($script);
=head1 DESCRIPTION
SWF::Action is an object for storing an action.
=head1 METHODS
=over 4
=item new SWF::Action($script)
Compiles $script and returns an SWF::Action object.
The script is a text string expected, according ActionScript syntax.
=item $result = $actionObject->compile($versionX)
Recompile object using syntax of versionX.
(Some differences exists between values 4 and 5.)
The result return value will be 0 on successful compiling.
=back
=head1 AUTHOR
Soheil Seyfaie (soheil@netcom.ca) and
developers of ming at ming.sourceforge.net
=head1 SEE ALSO
SWF, SWF::Button, SWF::Movie, SWF::MovieClip, SWF::InitAction
=cut
|