Questions tagged [xfl]

XFL is a XML-based file format for Adobe Flash Professional; introduced since version CS5.

XFL is a XML-based file format for Adobe Flash Professional, introduced since version CS5. Its purpose is to unwrap the document data, describing all objects on stage and library and what they are composed to, down to links to external images/fonts and instructions to draw vector lines & curves. It creates each object as a separate XML file in a structure mirroring an open Flash Professional document.

It is known to not be completely XML, with an extra /bin folder holding compressed data files that are actually read into Flash Professional when loading.

See for more info:

15 questions
12
votes
2 answers

What's the meaning of the non numerical values in the XFL's edge definition?

XFL is the new uncompressed ADOBE FLASH (CS5) source file, it consists from XML definitions, most of them are clear but unfortunately, the important one are strange. Looking to various existing sources, I can see shape's EDGE definitions like:
Oldes
  • 937
  • 1
  • 9
  • 24
5
votes
2 answers

XFL - What are the ./bin/*.dat files?

Uncompressed Adobe's Flash XFL format still keeps a lot of content compressed. Does anybody know specification of these binary *.dat files?
Oldes
  • 937
  • 1
  • 9
  • 24
4
votes
1 answer

Is using uncompressed XFL documents with SVN advisable?

My team and I are considering switching to using the "Flash CS5 Uncompressed Document (*.xfl)" option in Flash CS5 based on the assumption that it will allow better collaboration and conflict resolution when working in a version-controlled (SVN)…
Simon Cave
  • 3,971
  • 4
  • 24
  • 28
4
votes
3 answers

XFL - What's purpose of the ./bin/SymDepend.cache file?

Does anybody knows any details about this file? Is it for example safe to exclude this file from SVN? I would say that it should not be problem because when I delete this file, I can still load the XFL and the file is created again on the next save.
Oldes
  • 937
  • 1
  • 9
  • 24
1
vote
3 answers

Batch Image Trim

I have a Flash fla file that contains a whole lot of images. The majority of each image is composed of transparent pixels with a visual object in there somewhere. Each image at the moment is at {x:0, y:0}. I want to trim away the transparent pixels…
BefittingTheorem
  • 10,459
  • 15
  • 69
  • 96
1
vote
1 answer

XFL - What's the best way how to generate DOMBitmapItem's itemID?

XFL's DOMBitmapItem tag has attribute itemID. What is safe way how to generate such an ID if I want to add new media items from external tool? The example of itemIDs looks…
Oldes
  • 937
  • 1
  • 9
  • 24
1
vote
2 answers

Is there a format specification for XML files from FLA import in CS5?

CS5 allows you to save FLA project as a bunch of XML files that encode vector graphics in some format, like: Is there a format specification somewhere explaining…
serg
  • 109,619
  • 77
  • 317
  • 330
1
vote
0 answers

Trouble starting a JSFL script from C#

I have the following code for running a JSFL script from my ASP.Net web app: Process.Start("c:\publish\build.jsfl").WaitForExit(); This code works fine locally on my Win 7 machine; Flash starts up, publishes the SWF, and closes. However, when I…
Frank Rosario
  • 2,512
  • 5
  • 31
  • 47
0
votes
0 answers

SVN best practice for storing images and the like

Working on an svn'ed project with assets like: .psd (super heavy) .png .swf .xfl (something hyped to make collaboration easier) As you can guess, it's a Flash project. I need the swfs, because i want non-developers on the project to have access to…
0
votes
0 answers

XFA Form Creating Duplicate Options Every Time it is Opened

Heading essentially explains the problem. We have an XFA form that we use for employee timecards. Every time you select the dropdown menu that has the list of dates it will duplicate everything inside the dropdown menu, for example: Click on the…
kevinvi8
  • 191
  • 1
  • 10
0
votes
1 answer

Flash XFL to iOS/XCODE/Interfacebuilder

I am thinking of starting an ambitious project of writing some type of converter to convert the new Flash CS5 XFL format to some type of iOS readable format for building pages. A lot of what I do convert old Flash course over to native…
smcdrc
  • 1,671
  • 2
  • 21
  • 29
0
votes
1 answer

How do I clear the sharedLibraryURL attribute of the DOMDocument element of the Flash XFL format?

I'm running into a very strange problem where I cannot import a particular symbol and I've finally narrowed it down by saving out the FLA to XFL and inspecting the DOMDocument.xml to find that the symbol in question is defined in the…
Justin G
  • 776
  • 1
  • 10
  • 25
0
votes
1 answer

How to save .fla as .xfl by code?

I am using jsfl to save .fla Doc in flash.But I want to save as .xfl(uncompressed document format), and I can't find useful API in jsfl.What should I do? Thanks!
zzy
  • 1,771
  • 1
  • 13
  • 48
0
votes
1 answer
-1
votes
1 answer

C# - XFL content: Convert .dat file to bitmap

I have .fla files that use XFL format. inside there's a /bin folder with some .dat files, these files are images. is there a way to convert these .dat file to bitmap and display them in PictureBox control? here's an example of a dat file: link And…