Search Results

1
vote
4answers
319 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 …
0
votes

Flex: bind a label’s fontSize to be half the size of another label?

What you tried gets called too early, so the font for "mylabel" isn't initialized yet. You could use the initialize event to do this after the UI components are filled in. <mx:L …