Flash :: Tool To Decompile Swf To Actionscript?
Oct 18, 2010How do you decompile a swf file
View 3 RepliesHow do you decompile a swf file
View 3 RepliesI am the maintainer of a site that has allegedly 'lost' the source code to a flash swf file. How do I decompile this source?
View 8 RepliesI want to replace an image inside of a SWF File without the need to decompile it.
View 1 RepliesI am looking for a script that will go through ~75,000 SWF files that we have, will decompile each and find all the Shapes/Elements which size is greater than x.The output should look smthng like:SWF Filename "SWF Path" "SWF overall Size" "Element Name" "Element Size".Does anybody know of a software that might be able to handle that task?How do decompile scripts work ? would it be easy to write something to handle the above task?
View 2 RepliesI tried hard to do this myself, but it isn't working. I would like to offer $20 to anyone who can decompile this flash program, edit the actionscript to load an xml settings file from URL (instead of loading the one compiled with the program), and package it up for me. My main problem is that it doesn't decompile in a way that runs when recompiled with the programs I use.[code]...
View 2 RepliesI have a small project that requires me to decompile a few SWF files in order to make some modifications to them. However, I do not own any Flash decompiler software.
I have searched for a freeware but, unfortunately, I cannot find one that outputs the FLA file.
Can someone that has a license to a Flash decompiler software please assist me and decompile the files so that I can work on them ?
I want to create a line tool exactly like flash line tool. But the code that I am using shows the line when we release the mouse button. How can I show the lines while it is drawing
Code:
this.createEmptyMovieClip("drawing_mc",this.getNextHighestDepth());
drawing_mc.lineStyle(1,100);
[code].....
I found that .fla files do not save in Flash CS4 when the Deco tool or Spray Brush tool is selected. Is this a bug? Or is there a workaround to this issue.
View 3 Replieshow I can protect SWF file, from being download and decompile??
do i need to purchase some software ?
Working with senocular Transform Tool - How to remove/disable tool for objects Im new to AS3, and i have to use it for my current project. I have used the AS2 Transform tool extensively, but needless to say, the AS3 version works entirely differently.
The way i understand it, the tool applies to and every Sprite , movieclip on stage
[Code]...
My mission here (and I'll try not to convolute it too much!) is to edit a flash based form from a decompiled SWF. The form's main purpose is to record user information in text fields, attach a file and email both to an external address using a few PHP scripts (I'm presuming) to dictate how the information is delivered. My problem is that SO THINK decompiler does not attach ACTIONSCRIPT to the layers and frame in the timeline, instead it exports each Action-script as a seperate .AC file. I have not yet been able to export an FLA that allows me to edit the scripts effectively, and am wondering if there is a more effective way to use a decompiler in this case, or if there is another solution to the problem.
View 4 Replieshow I can protect SWF file , from being download and decompile?
do i need to purchase some software ?
I prepared a project and i can published it without any error.Action folder includes actionscript files.But when i decompile the swf file there isn't action folder and actionscript files are missing.
NOTE : On CS4 I didn't face a problem like this and i could see Action folder when i decompile the swf file.
Does anybody know any way or any software which could decompile swf file to generate the source code mxml file and actionscript file?
View 2 RepliesI'm trying to decompile a .swf doc and extract the formulas embedded in it, in order to create a .xls document with the same formulas and creating the same charts shown in the .swf. I can't manage I will forward the .xls.
View 1 Repliesi need to share a preview banner to my cliend , but i want to evite the decompile risc. The cliend may decomple my banner and stole it . I need a safe way to do it .
View 1 Repliesim making a bone animating system in flash but then i want to give it a more vital animation by manipulating its z y x position how is it possible using the 3d tool?im doing everything needed but when i get to that point nothing seems to work,i dont get 3d tool options.
View 2 Repliesi have found that:
1. There has a subtle difference between a static text field in flash authoring tool which has been set to use the device font when it's got focus(state that user can type character in) and lose focus;
2. There also has a subtle difference between when it is being rendered in flash player and in flash authoring tool.(Note that the key factor here is setting the text field to use device font.)
create an interactive document. click. popup Used the pdf link tool to launch a flash movie in a floating pop up.. Now I I want the popup to close automatically. Unloading the MC doesn't do it.
View 1 RepliesWhere is the gradient tool in Flash CS4?
View 1 RepliesI'm having trouble with the Flash CS5 Bone Tool, Everytime I create 2 sets of objects whether its legs or arms, when I duplicate them. break them apart and make a second set of arms and legs, the two characters I assign them to, swap around when I saved them. So one has arms instead of legs and legs instead of arms, but the other character is completely unaffected. I move the bones within the symbols and they return to normal but then it affects the other character and vice versa.
View 1 RepliesAre there any review tools out there that can load swf's and allow comments to be written against them?
View 1 RepliesI am creating a ragdoll game without gravity and with constraints, I want to use the bone tool in flash as3.Is it possible to embedded in a bone tool in Actionscript 3?
View 1 RepliesI'm trying to get familiar with design patterns, modularity, unit testing and etc... (with ActionScript). I'm developing a simple "Free transform tool" right now, just as a exercise, but I don't like the solutions that I come up with so far, so I'll try to walk you trough my line of thoughts. When I come up with the idea I was thinking "What to write so I can test this great Unit testing framework FlexUnit", the first thing that I saw was guess what.. a free transform tool. :) When I was thinking about the architecture of the tool I run every scenario trough "How can I write unit tests for that thing?", so I come up with some kind of twisted MVC meta pattern:
A view that's holding all components (rotation area, drag area, resize buttons)A model (or something like that) that holds the necessary logic (setSize, setPositiom, rotateAroundCenter, etc..).And a controller that add listeners to the view components, update the mouse cursor when its over a component, get the mouse coordinates when is interacted with a component, do the calculations and call methods from the model that will update the view and the object that is benign transformed.
I was thinking: "Ok its flexible, i can switch M, V or C at any time, I achieved my main goal, because I can make lots of unit test for the model, where the important calculations are, so its great..".I just have started implementing it, but I think most of those thoughts are wrong. Yes I can change the view and add new skin but it's not flexible at all, if I want to add "skew" (or any other) functionality I should rewrite (or If I'm lucky just extend) M, V and C.Yes I can make bunch unit test for the model but controller's calculations will be hard to test.
So now I'm thinking for something like the Decorator pattern that will allow me to create whatever combination of controls i want to use and keep their logic separated, but I want to have the option to re-skin the controls themselves and to keep the logic separated so I can do the tests.I realize I want to create some kind of "ultimate transform tool", but I'm really trying to push my limits and learn something.
I am planning to create a flash game on my own.Is there an opensource tool for making flash games?
View 5 RepliesWhats the 3d capability in flash cs5, I've been told there is a new 3d tool for rotating around objects. Does that mean an obj import is possible? I am eventually aiming for a series of gear wheels, one facing the screen rotating on its z axis. Is this possible.
View 0 Replieswhats the 3d capability in flash cs5, ive been told there is a new 3d tool for rotating around objects. does that mean an obj import is possible? im eventually aiming for a series of gear wheels, one facing the screen rotating on its z axis. do you think this is possible, im primarily using as3 to add everything to the stage and rotate. (hope it was ok to post here)
View 2 RepliesDoes anyone know how to smooth an animation like this one?URL...Or it has to be done with Papervision or AE to make it run right?
View 1 RepliesI have drawn a square and would like to fill it with gradient color. But I wonder where can I find it. One more question, how can I change the transparency of an image/bitmap picture?
View 3 RepliesAre there any free tool for converting swf flash to gif file?[URL]...
View 3 Replies