Tagged Questions

0
votes
3answers
288 views

How to tell when control becomes visible for the first time?

I have a popup that contains a TabNavigator control. The tabs are dynamically added to the TabNavigator when the popup loads. Is there a good way to tell when one of the tabs is loaded, from the tab ...
0
votes
0answers
209 views

Adapting Actionscript program to play nice with MXML and ViewStack

I wrote an ActionScript program whose main class is Sprite, and which creates a bunch of other Sprites and adds them to itself as children, and then adds itself as a child to the Stage. I then ...
0
votes
2answers
543 views

How do I show flip effect in flex viewstate?

I'm new to Flex. I want to build cool web application in flex. For displaying content of my site, I use viewstack and button bar. It is ready, but now I'd like to add some animation effect in that. ...
0
votes
4answers
712 views

Smooth sliding animation in Flex with large amounts of components

I have a component I created that works like a Viewstack but the next index component slides in from one of the four sides. I've got it working well enough that it's acceptable to use, but I want to ...
0
votes
3answers
563 views

How to get Flex components to fill available space using Actionscript

I was laying out my Flex components using mxml and had them working correctly. But then I wanted to switch them over to Actionscript because I wanted them to extend a base component that provides ...
0
votes
2answers
160 views

What are some good patterns for managing a bunch of views/screens in Flex?

I'm building a Flex application with about a dozen different screens. There's relationships between the screens such as when on screen 1, I click on something that is an input to screen 2. Then I ...