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::Button(3pm)					User Contributed Perl Documentation				       .::SWF::Button(3pm)

NAME
SWF::Button - SWF button class SYNOPSIS
use SWF::Button; $button = new SWF::Button(); $button->setUp($shape1); $button->setDown($shape2); DESCRIPTION
Creates buttons for flash movies. Buttons are controlled by various methods for visible design and triggered actions, see below: METHODS
new SWF::Button() Creates a new Button object. $button->addShape($shape, FLAG) Adds $shape to the button. Using this method is not recommended, better use addCharacter(), see next item for details. Also unlike addCharacter() this method does not return any SWF::ButtonRecord objects $buttonrecord = $button->addCharacter($character [, $flags]) Adds character $shape to the button. Valid FLAGs are: SWFBUTTON_HIT SWFBUTTON_UP SWFBUTTON_DOWN SWFBUTTON_OVER Unlike addShape() this method returns an object of SWF::ButtonRecord class. The flag states can be combined using the binary or operator. $buttonrecord = $button->setOver($shape) Shortcut for $button->addCharacter($shape, SWFBUTTON_OVER); $buttonrecord = $button->setHit($shape) Shortcut for $button->addCharacter($shape, SWFBUTTON_HIT); $buttonrecord = $button->setUp($shape) Shortcut for $button->addCharacter($shape, SWFBUTTON_UP); $buttonrecord = $button->setDown($shape) Shortcut for $button->addCharacter($shape, SWFBUTTON_DOWN); $button->addAction($action [,FLAG]) $button->setAction($action [,FLAG]) Adds $action object (see SWF::Action). Valid FLAGs are: SWFBUTTON_MOUSEUP SWFBUTTON_MOUSEOVER SWFBUTTON_MOUSEOUT SWFBUTTON_MOUSEDOWN SWFBUTTON_DRAGOVER SWFBUTTON_DRAGOUT SWFBUTTON_MOUSEUP is the default value of FLAG. $button->setMenu(0|1) Parameter is 0 (off) or 1(on). Can be used for a slight different behavior of buttons. $soundinstance = $button->addSound($sound, $flags) Plays a prepared SWF::Sound object and returns an object of SWF::SoundInstance. Once more valid flags are: SWFBUTTON_MOUSEUP SWFBUTTON_MOUSEOVER SWFBUTTON_MOUSEOUT SWFBUTTON_MOUSEDOWN For example: $sound = new SWF::Sound("wow.mp3", SWF_SOUND_MP3_COMPRESSED ); $soundinstance = $button->addSound($sound, SWFBUTTON_MOUSEDOWN ); $button->setScalingGrid($x, $y, $w, $h) This function (available from SWF>=8) sets a 9 slice scaling grid: 1 2 3 4 5 6 7 8 9 X, y, w and h define a rectangle, which is the dimension of the center slice(5). All other slices are determined out of the characters bounds and the defined rect. While slice 5 is scaled vertical and horizontal, slice 2 and 8 are only scaled horizontal. Slice 4 and 6 only vertical. The 4 corner slices are not scaled (1, 3, 7, 9). $button->removeScalingGrid() Removes scaling grid rectangles. AUTHOR
wrapper written by Soheil Seyfaie (soheil at users dot sourceforge dot net) Peter Liscovius (peterdd at users dot sourceforge dot net) and many others. SEE ALSO
SWF, SWF::Action, SWF::Shape, SWF::Movie, SWF::MovieClip, SWF::Constants, SWF::Sound, SWF::SoundInstance perl v5.14.2 2011-10-26 .::SWF::Button(3pm)