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 ...
1
vote
3answers
274 views

How to access other panels in Flex 3 ViewStack?

I have a ViewStack with 2 panels: <mx:ViewStack id="viewstack1" height="243"> <mx:Panel id="gridPanel"> <mx:DataGrid id="grid" right="10" left="10" top="10" bottom="10" width="300" ...
0
votes
3answers
384 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
1answer
84 views

Navigating directly to the second tab in tab navigator

I have a component mxml in which i have a save button, on click of the save button i need to display another component which will be in a tab navigator, for this I am using the view stack. My problem ...
0
votes
1answer
490 views

Flex 3 - Remove image flickering

I have an application with different components that are accessible through a viewstack in the main application. The main application looks like that: <Application> <Viewstack> ...
0
votes
2answers
164 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 ...
0
votes
1answer
745 views

How to hide view stacks in AIR application?

I have two viewstacks one for Main menu and another one for submenu. I want to show viewstack page infomation at the time only one viewstacks . Another one hide . if i click submenu viewstack then ...