Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
3k views

How to dispatch events in C#

I wish to create own events and dispatch them. I never done this before in C#, only in Flex.. I guess there must be a lot of differencies. Can anyone provide me a good example?
3
votes
3answers
304 views

Multi-threaded Event Dispatching

I am developing a C++ application that will use Lua scripts for external add-ons. The add-ons are entirely event-driven; handlers are registered with the host application when the script is loaded, ...
3
votes
7answers
798 views

I can't dispatch custom event from one module to another as it gives TypeError: Error #1034: Type Coercion failed:

I am trying to dispatch a custom event from one flex module to another. The code which dispatch the event is as below Application.application.Destination.child.dispatchEvent( new ...
2
votes
0answers
24 views

Event Flow between Siblings Objects in Flex

I have a menubar and a custom component in my main application in Flex. On clicking a menu item in the menubar, I need a custom event to be raised which could be listened by the custom component as ...
2
votes
1answer
64 views

dispatchEvent not preforming event, but returns true

On MDC's site they have a cool demo of dispatchEvent that works fine in my chrome 15. I'm trying to take an event object and pass it into dispatchEvent, and have set up a simple case here where you ...
2
votes
3answers
200 views

What's the best way to integrate an event-dispatcher in a PHP library?

I need to integrate an event dispatcher in my own codebase (custom PHP library), so I looked at what both Symfony2 and Zend Framework 2 are doing. Obviously, there's no shared interface for ...
2
votes
1answer
358 views

Firefox 5 dispatchEvent not working

I have some code that uses dispatchEvent to simulate clicks and the same exact code works fine in Chrome but doesn't work in Firefox. Here's the code: var evt = document.createEvent("MouseEvents"); ...
2
votes
3answers
86 views

Whats the appropriate form when dispatching events in AS3?

I was wondering what the appropriate form was when creating custom events? Should one create a CustomEvent class, and then create a temporary dispatcher in the function, and dispatch the CustomEvent. ...
2
votes
2answers
380 views

Easier Custom Events Handling in Java

In Java, everytime I want to create a new custom event, I usually do it by add 3 methods namely: addDogEventListener(EventListener listener); removeDogEventListener(EventListener listener); ...
2
votes
2answers
871 views

Java Swing : changing JTree selection while editingstopCellEditing() : how to get stopCellEditing() called before TreeListeners:valueChanged?

regarding to earlier question How to stop editing with DefaultCellEditor when a separate JBtton is pressed and Sun Bug 4724980: JTable: Add API to control what happens to edits when table loses ...
1
vote
1answer
30 views

Raising noncustom events in ActionScript 3

I'm using ActionScript 3 in Flash Professional and I'd like my class to raise an event, not a custom event but an existing one. I've set up my class so that it extends EventDispatcher. In the ...
1
vote
1answer
34 views

Sending ArrayCollections via P2P Flex

I have a question regarding P2P with flex. When passing data between two applications using P2P. I get the following error: warning: unable to bind to property 'piece' on class 'Object' (class is ...
1
vote
2answers
68 views

AWT EventQqueue AccessControlException

I am pushing my own test event queue over the System eventqueue. And in TestEQueue I have over loaded the dispatchEvent method with one call to super.dispatchEvent TestEQueue mytestqueue = new ...
1
vote
1answer
396 views

HTML5 Drag and Drop ondragover not firing in Chrome

I have this simple example here which is not firing in Chrome 11 for me http://jsfiddle.net/G9mJw/ which consists on a very simple code: var dropzone = document.getElementById('dropzone'), ...
1
vote
3answers
152 views

Flex Event Dispatching

I have some questions with a particular structure of a program I'm writing. I'm using a Remote Object to make a remote call to a Rails method (using WebOrb). The problem arises in the way that I get ...
1
vote
4answers
1k views

How to temporarily disable event listeners in Swing?

I've got a Swing application with a model and a view. In the view (GUI) there are a lot of components, each of them mapping to some property of a model object and displaying it's value. Now there are ...
1
vote
2answers
79 views

Cutom event dispatchment location

I've been looking into custom event (listeners) for quite some time, but never succeeded in making one. There are so many different mehods, extending the Event class, but also Extending the ...
1
vote
2answers
841 views

Swing Worker Modal Dialog Won't Close

I have a SwingWorker thread that launches a modal dialog box (from a property change listener that listens to the StateValue of started) and the swing worker proceeds to do its work. However, it looks ...
0
votes
1answer
47 views

dispatchEvent to fire MouseEvent not working

I am adding the same image (play button) to a movie clip those images later when pressed toggle states and play a video. What I am trying to accomplish is automatically toggle the default image ...
0
votes
1answer
40 views

Is it possible to listen the event triggered by another class?

I've got 3 classes: The class that recognizes the change in URL (using SWFAddress by Asual): package swfaddress { import flash.display.MovieClip; import com.asual.swfaddress.*; public class ...
0
votes
1answer
49 views

Only shows the lastly added JPanel to JFrame in Event-Dispatch thread

I can only see the JPanel added at last. Previous ones seem to be replaced by the last one. Why is this? Here's my code. Thanks in advance. ... class GUIController { BaseFrame bf = new ...
0
votes
2answers
48 views

Adding additional panels to a JFrame which lives in a EventDispath thread, from outside that?

I create a new frame in EventDispatch thread and want to add new Panels to that later on. But all i get is a blank frame, with 0 height. But panels added from inside the inner class are displayed. How ...
0
votes
3answers
61 views

Reusable Javascript event object

I am making mouse click events and I'm trying to dispatch it to some node several times in a row. For that I am using the same MouseEvent object and for some reason this approach does not work. Yet, ...
0
votes
1answer
114 views

Proper way to add event listeners to things that don't have it as a native method

I have a custom class that is currently not extending anything (it's for executing specific types of queries on a database) but I need it to send an event to its parent class. addEventListener is not ...
0
votes
1answer
210 views

AWT-EventQueue-1 on JList

I finally got the code to compile correctly. However, there is a probably. I set the listbox to add a mouselistener and all but I get a huge error: I added this, primarily, to the code: ...
0
votes
2answers
137 views

EventDispatcher between an as and an fla?

I am making a fighting game in Flash and while I have everything running, I am missing something: a victory/loss screen. Logically, I know how to do it: if character.hp < 0 { character.dead = ...
0
votes
6answers
583 views

Attaching a property to an event in Flex/AS3

I have a parameter that needs to be passed along with an event. After unsuccessful attempts to place it on the type by extending the class, I've been advised in another SO question to write a custom ...
0
votes
1answer
895 views

What would cause this IllegalArgumentException during event dispatching?

This is the stack trace that is generated: Exception occurred during event dispatching: java.lang.IllegalArgumentException: Cannot format given Object as a Number at ...