vote up 0 vote down star

I'm new to Flex, and I'm trying to write a simple application. I have a file with an image and I want to display this image on a Graphics. How do I do this? I tried [Embed]-ding it and adding as a child to the component owning the Graphics', but I'm getting a "Type Coercion failed: cannot convert ... to mx.core.IUIComponent" error.

flag
Can you post some sample code to show how you're intending to use a Graphics object, please? – RickDT Nov 4 '08 at 14:09

3 Answers

vote up 3 vote down check

Off the top of my head I can think of two things that might help you (depending on what it is exactly that you're trying to achieve):

If you just want to display an image you've embedded, you can add an Image component to the stage and set the value of its source as the graphical asset (Class) that you're embedding:

[Bindable]
[Embed(source="assets/image.png")]
private var MyGfx:Class;

myImage.source = MyGfx;

If you actually want to draw a bitmap onto a Graphics object, you can do this with the beginBitmapFill() method:

[Bindable]
[Embed(source="assets/image.png")]
private var MyGfx:Class;

var myBitmap:BitmapData = new MyGfx().bitmapData;
myGraphics.beginBitmapFill(myBitmap);
myGraphics.endFill();

You might find the Flex Quick Starts articles on Adobe's site useful, especially the "Embedding Assets" section.

link|flag
This is somewhat relevant here too: stackoverflow.com/questions/554631/… – bzlm Feb 17 at 22:00
vote up 0 vote down

Since you're a beginner, here's an easy way.

In your application, switch to Design View.

Drag an Image Component from the Component Panel onto the main Application Canvas.

Size the Image on the Canvas and leave it selected. On the right hand side, in the properties panel, click the Folder button on the "Source" field.

Choose your image. If you place the image in your project's folder, it will be included in your build folder.

Then take a look at the source view. You will see MXML code that reflects what you've done. You can change this by hand as well. The source="blah.png" part can also be pointed to a remote URL.

link|flag
vote up 0 vote down

You can also add a regular AS3 displayobject to a Flex component by adding it to the rawChildren collection (myComponent.rawChildren.addChild(myPNG)), but that's a bit of a hack.

If you're trying to do this via myDisplayObject.graphics, please post some sample source.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.