SWF Protector 2.0.2128 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News SWF Protector 2.0.2128 (Default branch)
# 1  
Old 02-02-2009
SWF Protector 2.0.2128 (Default branch)

SWF Protector is designed to securely encrypt SWF files. SWF Protector applies several exclusive obfuscation methods to make SWF files inaccessible for SWF decompilers. It can also encrypt ActionScript code within SWF files. License: Shareware Changes:
One more protection method was added. Full support for AS3 was added. The algorithms for AS2 obfuscation were entirely rewritten. The speed of downloading, processing, and saving SWF files was improved. The interface was totally overhauled. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. Red Hat

HP Data Protector port 5555 issue

Dear All, I have my HP Data Protector installed on the backup server. I want to connect this backup server with the client server through telnet port 5555 like below telnet < ipaddress of client> 5555 But when I try like this , it says ...Connection refused ...unable to connect to... (0 Replies)
Discussion started by: jegaraman
0 Replies

2. Linux

Open port for Data Protector

Hi guys. Opening port 5555 for Data Protector on Linux box but can't telnet to it. Modified /etc/services to have: omni 5555/tcp # DATA-PROTECTOR But when I telnet into it: telnet <ip address> 5555 Doesn't connect Need help figuring out what I need to do to open this port. ... (0 Replies)
Discussion started by: jamie_collins
0 Replies

3. HP-UX

anyone ever play with omniback(data protector) command "omnir"?

playing around with a command-line restore from omniback...anyone ever play with omnir? I have the following test backup: $ omnidb -session 2008/02/01-6 Object Name Object Type Object Status... (1 Reply)
Discussion started by: mr_manny
1 Replies

4. HP-UX

Data protector GUI gives Blank screen

Hi, Haveing a little trouble with data protector (5.5) on HP-UX (11.11, 11.23) under Xwindows Chameleon UNIX 97 (7.0 - its a old version) I am trying to get the GUI for DP up and running on a HP-UX cell manager and I have the following problem. The GUI starts up with no errors that I can... (2 Replies)
Discussion started by: Andrek
2 Replies

5. UNIX for Advanced & Expert Users

Omniback/Data Protector cell_info file

People, Can any one tell me the meaning of the "-main" option in the Omniback cell_info file. (We have Data Protector 5.5) ?? (4 Replies)
Discussion started by: Andrek
4 Replies
Login or Register to Ask a Question
.::SWF::Filter(3pm)					User Contributed Perl Documentation				       .::SWF::Filter(3pm)

NAME
SWF::Filter - SWF filter class SYNOPSIS
use SWF::Blur; use SWF::Shadow; use SWF::Constants qw(:Filter); @color= (12,45,99); $blur = new SWF::Blur(15, 15, 2); $shadow = new SWF::Shadow(2.5, 12, 2); $filter = SWF::Filter::newDropShadowFilter( @color, $blur, $shadow, SWF_FILTER_MODE_KO); $displayitem->addFilter( $filter); DESCRIPTION
Filter objects are available since player version 8. They can be applied to buttons, movieclips and text instances by the addFilter() method of SWF::DisplayItem objects. Several types of filters exist. Each of them has its own method of construction, see below. METHODS
newDropShadowFilter($colorref, $blur, $shadow, $flags) Creates a DropShadowFilter object. The object is controlled by color, blur object, shadow object and flags (SWF_FILTER_MODE_INNER, SWF_FILTER_MODE_KO). newBlurFilter($blur) Creates a BlurFilter object. The object is controlled by the blur object. newGlowFilter($colorref, $blur, $strength, $flags) Creates a GlowFilter object, a simple variant of DropShadowFilter. Use SWF_FILTER_MODE_INNER, SWF_FILTER_MODE_KO as flag values. newBevelFilter($shadow_colorref, $highlight_colorref, $blur, $shadow, $flags) Just another (complex) variant of DropShadowFilter. Use SWF_FILTER_MODE_INNER, SWF_FILTER_MODE_KO or FILTER_MODE_ONTOP as flag values. newGradientGlowFilter($gradient, $blur, $shadow, $flags) Just another (more complex) variant of DropShadowFilter. As flag use SWF_FILTER_MODE_INNER, SWF_FILTER_MODE_KO or SWF_FILTER_MODE_ONTOP . newGradientBevelFilter($gradient, $blur, $shadow, $flags) Just another (slightly more complex) variant of DropShadowFilter, extending newBevelFilter() by using a gradient instead of simple colors. Use SWF_FILTER_MODE_INNER, SWF_FILTER_MODE_KO or FILTER_MODE_ONTOP as flag values. newColorMatrixFilter($filtermatrix) The filtermatrix is an object of SWF::FilterMatrix class sized 5 columns x 4 rows for RGBA values, useful for transformations like color conversion to greyscale pictures. newConvolutionFilter($filtermatrix, $divisor, $bias, $colorref, $flags) Another filter for nice picture effects like blur etc. The filtermatrix is an object of SWF::FilterMatrix class. As flag use either use SWF_FILTER_FLAG_CLAMP or SWF_FILTER_FLAG_PRESERVE_ALPHA. AUTHOR
developers of ming.sourceforge.net SEE ALSO
SWF, SWF::Filter, SWF::Blur, SWF::Shadow, SWG::Gradient, SWF::FilterMatrix, SWF::DisplayItem, SWF::Constants, SWF::MovieClip, SWF::Button perl v5.14.2 2011-10-26 .::SWF::Filter(3pm)