Bharath
Bharath

Reputation: 11

How to find Action Script in a flash file (.fla file)

I have to analyse data in a flash file. I have given with swf file , which i decompiled and produced .fla file which contains 35000 lines of code.

In that .fla file how to find user written code (i think so Action Script ). I am struggling with this. Meanwhile i am preparing environment for flash editor with flashdevelope software.

Can somebody please suggest me how to find user written code in a flash file(.fla)

Upvotes: -1

Views: 997

Answers (1)

Sameer Kumar Jain
Sameer Kumar Jain

Reputation: 2135

You have to look on each and every keyframe which have an action symbol. I put an image to show how it will appear in flash file.

enter image description here

If your swf is targeted to AS3 then probably all the codes will decompiled in external ActionScript files. You will have to search in all the directories generated from your decompiler.

Edit

as @BadFeelingAboutThis suggests, there is another way by looking at the left panel within action panel.

enter image description here

Upvotes: 1

Related Questions