Tagged Questions

0
votes
1answer
310 views

Flex 4, listen an event from parent

I have the following problem: Description: I have a page with a button and a spark list (spark.components.List), when the button is clicked, all the elements in the list should change their label. ...
0
votes
1answer
38 views

How far can one event go and how do I listen for it?

I have code in a flex component that I want to listen for an event, the source of the event is a custom class that's being run by another class that's being run by another class etc etc. I was under ...
0
votes
2answers
284 views

what to addEventListener to when listening for custom events?

I am sending an event when an sql query returns no matches so that I can continue with the addition to the database.. It seems like actionscript is requiring that I attach the listener to something, ...
0
votes
2answers
119 views

Updating external Flex components from an action

I'm new to Flex and am having trouble understanding Events. I think Events are what I want to use for my situation. I have 2 components, addUser.mxml and listUsers.mxml. I access these from a ...
0
votes
1answer
500 views

Dispatch Event When Listener Is Added - ActionScript3

Is it possible to dispatch an event from an object when an event listener is added to that same object, without overriding the addEventListener method of that class? I am working on a modularized ...