Tagged Questions

3
votes
2answers
346 views

Flex ViewStack With A Repeater - Repeater Gets Placed At The Bottom

I have a problem when creating a ViewStack, with a repeater along with other components (i.e. vBox) inside the ViewStack. The repeaters get placed at the bottom of the view. Despite the repeater 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 ...
1
vote
2answers
104 views

How to bind effect in code in Flex

I want to add a component into a Viewstack dynamically in flex4. Like code below for(var i:int = 0; i < 3; i++) { var canvas:NavigatorContent = new NavigatorContent(); canvas.label = ...
1
vote
3answers
264 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" ...
1
vote
3answers
736 views

Flex: View Stack Navigator

I have a component mxml file in which i have a view stack, on click of a button i navigate to the first child, now i need to navigate to the second child during onclick of a button present in the ...
1
vote
1answer
543 views

Always resize the viewStack

I'm facing one weird problem : I'm using a viewStack which have is property resizeToContent set to true. When I'm selecting a child higher than the viewStack, it's correctly resized, but when I'm ...
1
vote
1answer
4k views

flex 3 passing data from modules to parent application to switch views in the viewstack

Hello Fellow stackoverflowers, I´m stuck writing a piece of code. I have application with a viewstack witch load 5 modules. each module is loaded via the moduleLoader tag and they all have an id. ...
1
vote
3answers
2k views

Flex Question: Can I use a ComboBox in Flex to change a view stack?

I am trying to use a combobox in flex with an array to change to a canvas in a view stack. Can I do this with some custom action script? The UI I am designing could really benefit form this.
0
votes
1answer
29 views

Flex: binding tab labels to variables

I'm using a custom tabbar with the dataProvider being a viewstack and I'm trying to get the tab labels to update when data in the related container (in the viewstack) updates. The viewstack's ...
0
votes
0answers
60 views

Flex's Spark <s:Animate> is doing odd things. It appears to be working too hard

I'm making a site with flex, which is all well and good, but I have run into this problem when using the tag: I have this block that very nicely animates a viewstack, which is called every time a ...
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
1answer
81 views

What is the best view architecture in flex?

I have started learning flex 4 and I got myself thinking about how to change views. So I have a question what do people usually use - states or views (ViewStack). The type of web application I am ...
0
votes
0answers
85 views

Flex - multiple individual custom events or one more general custom event?

In Flex, let's say I have a parent application with a viewstack as a child, which in turn has multiple children, let's say childA, childB and childC. Whenever I want to make a change to one of the ...
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
2answers
252 views

Flex - Passing data into tabbed views

I have a project that has 4 views where I'm using the tabBar with viewStack/NavigatorContent. I have a couple HTTPServices set up gathering the XML and converting to Bindable ArrayCollections. When ...
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
1answer
105 views

Is there a way to use a viewstack with a tree list

I want to know if I can use a tree and when and item in the tree is clicked the viewstack changes to that certain item?
0
votes
1answer
312 views

Flex: Referencing component IDs within modules, nested viewstacks etc

The Adobe docs state: The IDs for all tags in an MXML component, no matter how deeply nested they are, generate public variables of the component being defined. As a result, all id properties must ...
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
1answer
442 views

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 ...
0
votes
1answer
812 views

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 <?xml version="1.0" encoding="utf-8"?> <s:Application ...
0
votes
2answers
983 views

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 ...
0
votes
1answer
83 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
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
1answer
1k views

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 ...
0
votes
3answers
450 views

Does C# winforms has a control like “ViewStack” in Flex?

In Flex there is the ViewStack component. Does C# have a similar control? If so, which? If not, how do you create similar behavior?
0
votes
3answers
562 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
711 views

Low Overhead Dynamic Tab/ViewStack in Flex?

Suppose I have a ViewStack like this: <mx:ViewStack id="s" left="5" right="5" bottom="5" top="0" width="100%" height="100%" creationPolicy="all" minHeight="0"> <mx:Repeater ...
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 ...
0
votes
2answers
604 views

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, ...
0
votes
1answer
700 views

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 ...
0
votes
1answer
730 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 ...
0
votes
1answer
788 views

LinkBar button / label click event transition

I have created a linkbar with two labels. Now, I need to keep a track of the label clicks. 10 ...
0
votes
2answers
1k views

Navigation issue in Flex - ViewStack, states or something else?

I have a bit of doubt regarding my application which is being created using Mate framework. The first thing user has to do is to log in, so I created Login.mxml view. After a successful login I need ...