Tagged Questions

2
votes
3answers
6k views

How to call a function in a Class from another Class?

Update: Modified title to better reflect my question Hi everybody :) My question today revolves around a CustomEvent I'm trying to send from one sub Class to another. I've used my CustomEvent class ...
0
votes
2answers
34 views

Trouble with dispatching events from external AS class in Flex

I've been trying this for a day now and I can't work it out. I have a main application Planner.mxml. This view has a couple of custom components, one of which is LoginView.mxml. In LoginView.mxml I ...
0
votes
4answers
58 views

Flex Event Handling

Folks, I had a doubt in Flex's event handling and dispatching mechanism. Consider the below diagram, Both Panels i.e Panel1 and Panel2 are under the same application. I want to dispatch an ...
0
votes
4answers
76 views

Create your own Events in Actionscript3, how it really work?

I'll try to be objective :) I would like to know how and why someone will need to create you own event. I actualy know how to do it but I don't get the really idea of do such a thing. Could you give ...
0
votes
1answer
291 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
2answers
265 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
326 views

How flash dispatchEvent really works?

It is said in the docs, that EventDispatcher's dispatchEvent "...dispatches an event into the event flow". The phrase is nice-looking and doesn't really explain anything. Say, we have two listeners ...
0
votes
1answer
231 views

AS3 The ways to dispatchEvent

I was wondering the difference between these two dispatchEvent method... //1. eventObj:YouTubeSearchEvent = new YouTubeSearchEvent(YouTubeSearchEvent.CHANGE_VIDEO_READY); ...
0
votes
2answers
116 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
3answers
9k views

Flash-AS3: Calling a function in a Class from another Class (Part 2) via DispatchEvent

Hey this question is in reply to Joel Hooks's comment on an older question of mine (How to call a function in a Class from another Class?) I was able to fix my own problem using a public static var ...
0
votes
1answer
158 views

Manually Dispatching a DocumentEvent for testing UI element validation code

I'm testing a Swing GUI application using the UISpec4J testing framework. I'm testing validation code on a JTextField, but the framework does not support focus-change events, as it runs the ...