Tagged Questions

7
votes
5answers
1k views

How to inherit states with mxml?

I have the following panel component called AdvancedPanel with controlBarContent: <!-- AdvancedPanel.mxml --> <s:Panel> <s:states> <s:State name="normal" /> ...
1
vote
2answers
368 views

Flex 4.5 Scope Problem Between States

I am creating an interface that has a few different states for the different steps. For those steps, there is data that I am pulling in from a database to fill certain fields. As of right now I am ...
1
vote
1answer
283 views

Is there a way to have global Flex 4 states (user roles)?

I am having an issue with flex states in my application. What I am looking to do is on creation complete of the application, obtain a user role guest/user/superUser (based on username and password) ...
1
vote
1answer
857 views

flex state basedOn multiple states

Is it possible, in flex, to assign multiple states as base for another state? Say I have state "stateA" that adds a button "buttonA" and state "stateB" that adds a button "buttonB". Is it possible to ...
0
votes
2answers
276 views

Flex 4 Item Renderer background colour - states do not work

I have an item renderer with the following states: <s:states> <s:State name="normal"/> <s:State name="hovered"/> <s:State name="selected"/> </s:states> I ...
0
votes
1answer
40 views

Flex 4 States — “correct” syntax

OK, can someone please tell me the REAL syntax for doing states in mxml in Flex 4??? I've seen both of the following (and implemented both) and don't know which way is "right" or preferred. In the ...
0
votes
1answer
120 views

Flex button skins return to default

I have a problem which involves skinned buttons returning to their default skins after certain actions occur in my application. Below I have included a partial screenshot where you can observe the ...
0
votes
4answers
323 views

Flex 4 - How to loop over children of a container when they are state-dependant

Flex's new States re-parents visual items that are marked with includeIn/excludeFrom. If I have a Group (MainGroup) with 5 children/elements that are state controlled, is there still a way to get a ...
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
35 views

using states in flex and tomcat

I'm using states in my application. It's a flex web application. I'm using Tomcat as my web server. I have a button on one component that when clicking on it causes a state change. When I run my code ...
0
votes
2answers
249 views

Flex 4.5: States vs Components

Can you suggest me when to use states and when to use custom components? The advantages and disadvantages of using these too methods? One problem I see using states in Flex 4.5 is, the includeIn ...
0
votes
1answer
135 views

use global application states

I am trying to use global application states to manage roles in my application. How can I use <properties.state> everywhere in my application if I declare it in my top level application?
0
votes
3answers
204 views

How do “States” work in Flash Builder and Flex?

I'm a little unclear as to how "states" work in Flex and Flash Bilder 4. Are states like "frames" in Flash Pro, or am I getting them wrong? How would I show difference "screens" to a user? (login, ...
0
votes
1answer
174 views

modularity and flex view states

I've seen some similar questions, but nothing quite like what I'm trying to figure out, so here goes. I have a flex app with many view states, some of which are used frequently, some of which are ...
0
votes
2answers
307 views

flex/flashbuilder 4 gumbo states are sometimes blank

Below is a very simple example, randomly, if I click the step2 button the state will change but the Step 2 panel will not be there. I suspect the children of the state are not getting created for ...
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
1answer
81 views

Is there an event in Flex that shoots out when all the operations in a mx:state tag are done?

Let's take the next example: <mx:State name="sayHello"> <mx:SetProperty name="preText" target="{this}" value="Hello"><mx:SetProperty> </mx:State> Can I somehow ...
0
votes
1answer
630 views

How can I check if a Flex 4 component belogs to a stategroup from actionscript?

I have a component with various states. From mxml, the includeIn and exclueFrom properties takes state groups as an argument. How can I check if the current state belongs to a state group?
0
votes
3answers
458 views

Changing Background Images per state

I have a Component that has a specific background image. The code looks like: <mx:backgroundImage>@Embed(source='img1.png')</mx:backgroundImage> <mx:states> <mx:State ...
0
votes
1answer
629 views

Flex 4 / Flash 4 Add to Current State

I am having a little difficulty working with states in Flex (or Flash) 4. Lets say that my application has three states; the default (base) state, state 1, and state 2. State 1 should always be ...
0
votes
1answer
2k views

Flash Builder 4 “includeIn” property causing design view error

I am creating a custom TextInput component that will define an "error" state. I have extended the TextInput class to change the state to "error" if the errorString property's length is greater than ...
0
votes
1answer
68 views

I have a problem implementing states in my Flex app, please help!

Hey guys, I'm trying to work out how to use states in my Flex app. I've created two states, State1 and Stage 2. Both are based off the base state. I've created a few visual elements for State1, and ...
0
votes
2answers
192 views

changing children of dynamic created states

I'm building an Xml-driven application. I create new states in a seperate actionscript-class. These states all contain a DataGrid. I can switch the states in the Main.mxml. But now I would like to ...
0
votes
1answer
122 views

Flex layout : Changes made to a single state

I was modifying the layout of a Flex application in Flex Builder. What I didn't realize was that the changes I made, were made for a particular state. There are around 6-7 states in my application. ...