How to Modify SWF without Recompilation
I could n’t access my Laptop last week, but i had some urgent work to do (recompile a old SWF). Here is how i did it.
This post is just a reference and guide based on the Post.
Find the Point which you want to modify using any of the available SWF Decompilers

Decompress the SWF using java.util.zip.DeflaterInputStream : Java Source Code file link
Jar File Download Link
Usage : java -jar SWFCompress.jar c 'YourSWF.swf'
Download the Nemo440.AIR , to view the hex code.
Notice the exact place of the code to be modified using

The conventions of u30 encrypted Hex code is provided by Adobe.
Download any Free Hex Editors like HxD, to edit the SWF
Find the code part and modify the -decompressed SWF

Compress the decompressed SWF, back to the form, using SWFCompress.jar.
Usage : java -jar SWFCompress.jar d 'YourSWF.swf'
Now the re compressed SWF is ready to go. Have Fun Cracking, Hacking SWF’s
