Open .fla file without using Flash Authoring tool [closed]
Asked Answered
A

4

13

I have a .fla file with some text that I want to get at. Is there a free app than you can use to open .fla files, or just a tool to dump strings and pics?

Allerie answered 22/11, 2008 at 9:50 Comment(0)
C
7

With such question, I just experiment...

I went to deviantART, went to the Flash .FLA Files gallery and downloaded one at random.
I got a .fla file of about 1MB.

I went to Sysinternals's site to get the latest version of Strings, a command line tool to extract plain text strings from binary files.
Ran:

strings -n 10 "D:\Archives\scrolling flash gallery with preloader.fla" > str

Got at text file with lot of data you have to sort yourself...

There are some other similar freewares utilities, some with GUI, but this command line version is handy. Works with both (or either) Unicode and Ansi strings.

Oh, obviously it is for Windows. You forgot to specify if you target a specific platform.

PS.: for what it is worth, I believe the Flash SDK is free at Adobe's site. You just don't have the Flash IDE, only a compiler, etc. for AS development. Perhaps it includes a tool to look at .fla files (not tried the toolkit yet).

Conglomerate answered 22/11, 2008 at 10:8 Comment(3)
Yup -- ended up getting the trial Flash CS4, a hefty 900MB, half-hour-install beauty that will bork your current flash player and requires killing firefox... :-)Allerie
The Flex SDK does not provide a means to work with .fla files, only to work with compiled fla files (that is .swf or .swc files)Mm
That strings is based on a common command in *nix, so it's available for linux and mac without the need to downloding it.Sanjuana
E
3

FLA is a proprietary Adobe format, it is not publicly documented.

I think only the container details are known. FLA container until CS4 is Microsoft Structured Storage (like MS Word documents), and starting from CS5 is simply ZIP. CS4 version can be opened with for example FAR Manager or OpenMCDF. CS5+ version can be opened with e.g. 7zip.

You'll see the binary Contents and other objects. AS3 code can be seen inside those in Unicode plaintext. But other elements are not so easily extractable.

Epencephalon answered 1/2, 2015 at 10:48 Comment(1)
There seem to only be Windows solutions around to treat CS4 file format, if anybody has more information on this very old topic I would be happy.Haily
S
1

There are some free libraries too that offer ways to extra content of SWF files (i.e. sswf). However, much less from .fla files since the format of the .fla files is proprietary.

Saltwort answered 7/9, 2011 at 3:57 Comment(0)
R
-5

you can access the .FLA file by simply changing its .FLA to .ZIP, and brows it as a directory. As far as making changes, I would install the free trial "Animator". you could try and replace a file inside the .fla (now .zip), but i do not think it will actually work. Than again, it IS flash, so..

Best of luck.

Rupe answered 26/4, 2016 at 19:50 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.