Flash XML Graphics (FXG) is an XML-based file format for sharing bitmap and vector graphic assets between the range of Adobe products.
Questions tagged [fxg]
31 questions
10
votes
2 answers
Display vector images in iOS (SVG or FXG)
I would like to display images in Adobe FXG file format (exported from flash) or SVG format in an iOS application.
Is there an Objective-C tool or library that can render vector graphics ?
(I don't want to convert my images to bitmap format ! I…

Arnaud
- 7,259
- 10
- 50
- 71
8
votes
4 answers
FXG Editor for Flex
The only FXG editor I've seen for Flex is by 7jigen, works online or
as a Flex app.
Does anyone know of a different one? It can be done in Illustrator I think, but that doesn't really offer a simple export to Flex type option, just gives…

Drenai
- 11,315
- 9
- 48
- 82
5
votes
1 answer
How do you get the unmarshaller in JAXB to ignore the XML root element name?
I am reading some XML data (FXG files if you are familiar with them).
Part of the data has varying tag names:
I have created a class…

Joe
- 7,922
- 18
- 54
- 83
2
votes
2 answers
I get error when importing fxg into flex 4.6 project
I made an fxg file using Inkscape and the fxg plugin. It is called BugattiVeyron.fxg
I also created AS3 project using flex sdk 4.6 and FlashDevelop 4 and import this file using the import statement like this
import BugattiVeyron;
and instantiate …

Vlad
- 2,739
- 7
- 49
- 100
1
vote
1 answer
Using FXG in the real world
Has anybody found examples of using FXG files in real world applications?

Vlad
- 2,739
- 7
- 49
- 100
1
vote
1 answer
Embedding FXG document by variable name in Flex
I've been trying to get FXG to work in my Flex app, it works and renders fine but what I'm trying to accomplish is a sort of a gallery with data about the images in a database. I used to be able to use but now…

soffi
- 11
- 1
1
vote
2 answers
Getting subchildren from FXG
I've imported an FXG from illustrator from Adobe illustrator into flash builder 4.5 and have managed to get it on the stage, the problem I'm facing is accessing the children of the FXG.
Basic FXG that won't work:

James Dardry
- 11
- 1
1
vote
1 answer
How to determine which path element clicked in FXG file
I am working on a sample map application using Flex 4/fxg? Now I have got FXG paths held in Group elements with id's( I have assigned path's id's to the corresponding group container)? But when I click anywhere in the map, I do not get the clicked…

M.D.
- 1,886
- 1
- 13
- 14
1
vote
1 answer
How to access viewWidth and viewHeight of imported FXG graphics?
In my ActionScript 3 project, FXG graphics are imported as instances of SpriteVisualElement as follows:
// with the FXG file myPackage/myFXGFile.fxg
import myPackage.myFXGFile;
var myFXG:SpriteVisualElement = new myPackage.myFXGFile();
addChild(…

Tim
- 13,904
- 10
- 69
- 101
1
vote
1 answer
A template for button skins using FXG graphics?
The UI in my app uses a lot of buttons that are mostly the same minus the FXG graphics used in their skins. Their skins look something like this

fred august
- 1,109
- 12
- 31
1
vote
1 answer
In Flex, How can I use an Fxg file as a MenuBar Icon attribute?
I have a little concern. I started trying to make a MenuBar control with custom icons already made in FXG format.
I have 3 FXG files in "assets.graphics.icons" inside my project…

Fernando Carrasco
- 11
- 2
1
vote
1 answer
Flex- drag and drop for fxg
I am building a flex project involving drag+drop of fxg graphics
my graphic is instantiated as below
I get an error: "Call to a possibly undefined method Graphic."
This works…

RG1967
- 378
- 1
- 15
1
vote
1 answer
Is there a way to use a bitmap fill as the stroke of a rectangle?
Using the Rect primitive you can define a fill using bitmap data like so.

1.21 gigawatts
- 16,517
- 32
- 123
- 231
1
vote
3 answers
How do you add a stroke to text?
How do I add a stroke to text in Flex 4? Specifically I'd like to add it to a Label (the text will change in it).
Update
The closest solution suggested has been to add a drop shadow filter as shown below. I've added a rectangle with a stroke for…

1.21 gigawatts
- 16,517
- 32
- 123
- 231
0
votes
1 answer
FXG and flex sdk
I have flex sdk 4.6 installed and I want to compile AS3 class that uses FXG file for simple graphics.
I have and fxg file called Speaker.fxg and I tried to import it like a package
import Speaker;
But when compiling it returns
Error: null
Also…

Vlad
- 2,739
- 7
- 49
- 100