Tagged Questions

4
votes
4answers
6k views

How can I nicely animate between viewstacks

I have a little Adobe Air app and I want to have several 'views' within it. I can achieve these views using a ViewStack but am having difficulty finding a nice way to animate between them. This is ...
2
votes
3answers
8k views

Flex Viewstack's children, if you can't see them, do they exist?

I seem to be running into an issue (Cannot access a property or method of a null object reference) binding events in actionscript to a viewstack layer not currently showing. Are those objects not ...
0
votes
0answers
47 views

Sparks and Viewstack?

In 4.5+ of the Flex SDK there's still no Sparks flex component that replaces the ViewStack. I know that there are several ways to mimic that behavior with states or includeInLayout properties. I also ...
0
votes
2answers
159 views

Why does Flex Viewstack “blink” when switching between views?

I'm working on an app in which I want the viewstack to switch views on certain events. I have them switching correctly but there appears to be a slight "blink" when the change between views occurs. ...
0
votes
0answers
114 views

close/change popup belonging to child of viewstack

I'm trying to create a self contained help component for a small app I've written. It is a clickable image that opens a popup with the help information relevant to whatever page/section being viewed. ...
0
votes
3answers
357 views

Problem getting viewState's selected child's id in flex 4

I'm transitioning a flex 3 application to flex 4. There was AS code in the flex 3 app that worked: var myCurrentSelectedChild:String = myViewStack.selectedChild.id; Now, in flash builder and flex ...
0
votes
2answers
2k views

Styling buttons of Flex TabNavigator

I created a TabNavigator with a bunch of NavigatorContent inside it, and want to skin just the buttons of the tabs themselves. So I added a skinClass, but looks like in the documentation, there's no ...
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 ...