Create a button with an icon in actionscript - Stack Overflow most recent 30 from stackoverflow.com 2009-11-23T13:05:08Z http://stackoverflow.com/feeds/question/300360 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/300360/create-a-button-with-an-icon-in-actionscript 2 Create a button with an icon in actionscript Kevin Beck 2008-11-18T22:21:14Z 2009-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#300431 0 Answer by HanClinto for Create a button with an icon in actionscript HanClinto 2008-11-18T22:45:22Z 2008-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#300768 2 Answer by Kevin Beck for Create a button with an icon in actionscript Kevin Beck 2008-11-19T01:40:35Z 2008-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#301628 2 Answer by Theo for Create a button with an icon in actionscript Theo 2008-11-19T11:30:54Z 2008-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#1480472 0 Answer by hiren aghera for Create a button with an icon in actionscript hiren aghera 2009-09-26T05:10:49Z 2009-09-26T05:10:49Z <p>whom are u create a advanced script button </p>