vote up 2 vote down
star

I want to create buttons with icons in Flex dynamically using Actionscript.

I tried this, with no success:

var closeButton = new Button();
closeButton.setStyle("icon", "@Embed(source='images/closeWindowUp.png");
flag
add comment

3 Answers

vote up 2 vote down
check

I found an answer that works for me. In my .mxml file, I create Classes for the icons I will use:

// Classes for icons
[Embed(source='images/closeWindowUp.png')]
public static var CloseWindowUp:Class;
[Embed(source='/images/Down_Up.png')]
public static var Down_Up:Class;
[Embed(source='/images/Up_Up.png')]
public static var Up_Up:Class;

In the Actionscript portion of my application, I use these classes when dynamically creating buttons:

var buttonHBox:HBox = new HBox();
var closeButton:Button = new Button();
var upButton:Button = new Button();
var downButton:Button = new Button();

closeButton.setStyle("icon", SimpleWLM.CloseWindowUp);
buttonHBox.addChild(closeButton);

upButton.setStyle("icon", SimpleWLM.Up_Up);
buttonHBox.addChild(upButton);

downButton.setStyle("icon", SimpleWLM.Down_Up);
buttonHBox.addChild(downButton);
link|flag
add comment
vote up 2 vote down

The error is in the quotes, there should be no quotes around the @Embed:

closeButton.setStyle("icon", @Embed(source="images/closeWindowUp.png"));
link|flag
add comment
vote up 0 vote down

I'm assuming you're adding it to the stage?

Also, I think your Embed is missing a close quote / paren.

closeButton.setStyle("icon", "@Embed(source='images/closeWindowUp.png");

should be:

closeButton.setStyle("icon", "@Embed(source='images/closeWindowUp.png')");
link|flag
Adding the missing close quote/paren didn't make any difference. I still get a runtime error Type Coercion failed: cannot convert "@Embed(source='images/closeWindowUp.png')" to Class. I call buttonHBox.addChild(closeButton); Is this what you mean by add to stage? – Kevin Beck Nov 18 at 23:58
add comment

Your Answer

Get an OpenID
or

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