Questions tagged [viewstack]

48 questions
1
vote
1 answer

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. Every loaded module has a context menu. the context…
DJ.
  • 2,031
  • 2
  • 13
  • 22
1
vote
2 answers

Flex viewstack addchild dynamically without recreating each child

I have a viewstack with a repeater inside to create each child. Soemthing like that:
0
votes
2 answers

How to run a function after the canvas has changed in ActionScript 3.0?

Please understand: I am a total beginner at Actionscript and anything like Actionscript, and though I generally have some idea of what I'm doing as a programmer, I'm having some setbacks in self-learning this language and Flex Builder. Right now…
Panzercrisis
  • 4,590
  • 6
  • 46
  • 85
0
votes
1 answer

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 100 i.e. If in the beginning "First" is clicked, the details will be displayed. After that, if without…
user120118
  • 65
  • 3
  • 8
  • 18
0
votes
1 answer

Constraining number of children in a ViewStack issue

I have the following code to create a ViewStack which is used as a dataprovider for a TabBar: I want to constrain the number of…
Sebastian
  • 436
  • 5
  • 24
0
votes
2 answers

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 to display the main view with…
alonzo
  • 95
  • 9
0
votes
1 answer

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 know that there's a couple people out there that…
0
votes
1 answer

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 containers are bound to bindable vars, so if a var…
Seaux
  • 3,459
  • 2
  • 28
  • 27
0
votes
1 answer

UITarBarController / UINavigationController Hybrid

Quite possibly I'm missing something obvious, but I have a very simple requirement and neither of these two seems to meet it. I have an application with 3 distinct views, however for reasons I won't go into here (essentially views may or may not be…
0
votes
2 answers

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. I've tried creationPolicy="all" but that doesn't…
Cam
  • 988
  • 1
  • 12
  • 25
0
votes
1 answer

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 making, can use both, but what do developers use in…
randomUser56789
  • 936
  • 2
  • 13
  • 32
0
votes
1 answer

View-Stack - counting how many views are in it

Is there a way to find out how many views are currently in the view-stack? Just curious to see how big its getting at any point when the code is pushing one view onto another...
Sirab33
  • 1,247
  • 3
  • 12
  • 27
0
votes
2 answers

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 and how is the best way to pass that data to such…
Mark P.
  • 282
  • 1
  • 4
  • 16
0
votes
1 answer

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?
Dennis
  • 137
  • 1
  • 1
  • 4
0
votes
1 answer

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 be unique within a document. This also means that…