Create a button with an icon in actionscript - Stack Overflow most recent 30 from stackoverflow.com2009-11-23T13:05:08Zhttp://stackoverflow.com/feeds/question/300360http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/300360/create-a-button-with-an-icon-in-actionscript2Create a button with an icon in actionscriptKevin Beck2008-11-18T22:21:14Z2009-09-26T05:10:49Z
<p>I want to create buttons with icons in Flex dynamically using Actionscript.</p>
<p>I tried this, with no success:</p>
<pre><code>var closeButton = new Button();
closeButton.setStyle("icon", "@Embed(source='images/closeWindowUp.png");
</code></pre>
http://stackoverflow.com/questions/300360/create-a-button-with-an-icon-in-actionscript/300431#3004310Answer by HanClinto for Create a button with an icon in actionscriptHanClinto2008-11-18T22:45:22Z2008-11-18T22:45:22Z<p>I'm assuming you're adding it to the stage?</p>
<p>Also, I think your Embed is missing a close quote / paren.</p>
<pre><code>closeButton.setStyle("icon", "@Embed(source='images/closeWindowUp.png");
</code></pre>
<p>should be:</p>
<pre><code>closeButton.setStyle("icon", "@Embed(source='images/closeWindowUp.png')");
</code></pre>
http://stackoverflow.com/questions/300360/create-a-button-with-an-icon-in-actionscript/300768#3007682Answer by Kevin Beck for Create a button with an icon in actionscriptKevin Beck2008-11-19T01:40:35Z2008-11-19T01:40:35Z<p>I found an answer that works for me. In my .mxml file, I create Classes for the icons I will use:</p>
<pre><code>// 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;
</code></pre>
<p>In the Actionscript portion of my application, I use these classes when dynamically creating buttons:</p>
<pre><code>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);
</code></pre>
http://stackoverflow.com/questions/300360/create-a-button-with-an-icon-in-actionscript/301628#3016282Answer by Theo for Create a button with an icon in actionscriptTheo2008-11-19T11:30:54Z2008-11-19T11:30:54Z<p>The error is in the quotes, there should be no quotes around the <code>@Embed</code>:</p>
<pre><code>closeButton.setStyle("icon", @Embed(source="images/closeWindowUp.png"));
</code></pre>
http://stackoverflow.com/questions/300360/create-a-button-with-an-icon-in-actionscript/1480472#14804720Answer by hiren aghera for Create a button with an icon in actionscripthiren aghera2009-09-26T05:10:49Z2009-09-26T05:10:49Z<p>whom are u create a advanced script button </p>