1
vote
4answers
320 views
Why does Flex let me treat a class as an object
This code is blunderous, as it adds a class to an array and later tries to pull it and manipulate it as if it were an object.
private function fail(event:Event):void
{
var myObj:My …
2
votes
4answers
2k views
Create a button with an icon in actionscript
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", "@Emb …
2
votes
Create a button with an icon in actionscript
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 …
