Questions tagged [viewstack]
48 questions
0
votes
2 answers
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.
For example changing the navigation content shows…

Vikas
- 24,082
- 37
- 117
- 159
0
votes
4 answers
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 make it more efficient.
Right now I'm using a…

wajiw
- 12,239
- 17
- 54
- 73
0
votes
1 answer
Flex: creating a multi column navigation bar for viewstack
I have created a Viewstack and using a Tile component and repeating LinkButtons I was able to make a multi column navigation with the viewstack as the dataprovider. My question is can this be done better? My code is below and I am wondering if I…

Max
- 1
0
votes
1 answer
Flex viewstack children includeIn works funny
I have a viewstack with childrens which I want to show/hide depending on the state the application is

chchrist
- 18,854
- 11
- 48
- 82
0
votes
2 answers
programmatically add views to a viewstack flex
I'm trying to figure out how to in as3 (not mxml) add views to a view stack.
For example I have a view component like so
package components.screens
{
import mx.controls.Label;
import mx.core.UIComponent;
public class HomeScreen extends…

dubbeat
- 7,706
- 18
- 70
- 122
0
votes
1 answer
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 is, on click of save I need to display the second…

Deena
- 297
- 2
- 7
- 17
0
votes
2 answers
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 skin part to target the button specifically.…

donpal
- 2,112
- 4
- 17
- 20
0
votes
1 answer
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:
…

BS_C3
- 385
- 1
- 6
- 23
0
votes
1 answer
Adding Icon in NavigatorContent
I am trying to add an Icon to NavigatorContent, but for some reason it is not working.
My code is below:

Spinxas
- 71
- 1
- 2
- 15
0
votes
1 answer
viewStack.addChild adding multiple child and only the last child is visible!
var viewStack:ViewStack = new ViewStack();
viewStack.percentWidth = 100;
viewStack.percentHeight = 100;
viewStack.addChild(canVas1);
viewStack.addChild(canVas2);
viewStack.addChild(canVas3);
lb = new LinkBar();
lb.dataProvider=viewStack;
Its only…

Bruno
- 1
- 1
0
votes
2 answers
Low Overhead Dynamic Tab/ViewStack in Flex?
Suppose I have a ViewStack like this:

jsight
- 27,819
- 25
- 107
- 140
0
votes
2 answers
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 might bring up screen 3, then go back to 2 and then…

Marplesoft
- 6,030
- 4
- 38
- 46
0
votes
2 answers
Flex viewstack keeps redrawing invisible child, how to fix?
The situation: I've got a ViewStack with 2 children (both of type Panel).
The application starts with child 1 as the SelectedChild.
With a click on a button, child 2 is the SelectedChild. After that, I return to child 1 being the SelectedChild.…

MysticEarth
- 2,646
- 4
- 33
- 53
0
votes
1 answer
Flex Call ItemRenderer inside a new panel()
I have the below function creating new panels inside my ViewStack.. This works fine and they are great.. However i am trying to put some content into the panels but i am failing.
private function viewstack_addChild(name:String):void {
…

medoix
- 1,189
- 2
- 16
- 36
0
votes
1 answer
Passing a XMLListCollection between views in ViewStack in Flex
I have a problem that I have no idea to resolve it. In my application, I have a ViewStack with 2 children.
In the first view of the ViewStack, I have a datagrid with a XMLListCollection as dataprovider. In this view, user chooses a record from the…

Hai-Binh LE
- 167
- 1
- 12