events

How does the event dispatch thread work?

With the help of people on stackoverflow I was able to get the following working code of the simples GUI countdown (it just displays a window counting down seconds). My main problem with this code is the invokeLater stuff. As far as I understand the invokeLater send a task to the event dispatching thread (EDT) and then the EDT execute t...

JavaScript or Jquery event handlers for "ctrl"/"shift" + mouse left button click

Is it possible to handle such events as: "ctrl" + mouse left button click; "shift" + mouse left button click; "alt" + mouse left button click by using JavaScript/jquery(or other framework). If it is possible, please give a code example for it. ...

Flex: Double click event propagation on datagrid dependent on component order?

I'd like to have a double click event on a datagrid in Flex3. The following example only works if the Accordion (id = "mustBeSecond") container comes after the DataGrid. Why is the order of the components important and what can I do to prevent this behavior? (The example does not work. If you change the order of "mustBeSecond" and "grid...

iphone basic game loop

I am little confused with my Opengl game loop. as I am skipping touch events some times. My game loop is some thing like this.. I have ScreenManager which draw and update all game screens who so ever has control.In update I am checking input of all screen also. if input state changes, then whichever screen has control, consume touches. ...

Is there a way to trigger gesture events on Mac OS X?

Hello, I want to trigger multitouch gesture events on Mac OS X. Is there a way to do this? Mouse or keyboard events can be triggered with CGEventCreateMouseEvent and CGEventCreateKeyboardEvent. Is there similar low level function for multitouch events? Rok ...

Java+DOM: Registering and using modification listeners: tutorials?

Hello, everyone! Please point me to some tutorials or other explaining examples about how to register and use modification listeners with Java's DOM implementation. On the web I find only Javascript or Flex examples. My target is to get to know when a Node was modified. I tried out several approaches, nothing works. Could it be that ...

write application event information with Win32 API

.NET provides EventLog class that be able to write application event information to a particular log on the system. Is there simliar Win32 API that can be called with C++? ...

How to trigger event in javascript

Hi guys, I have attached a event to a text box using addEventListener. It works fine. My problem arouse when i wanted to trigger the event programmatically from another function. how can i do it? ...

DevExpress AspxGridView clientside SelectionChanged problem when using paged ObjectDataSource

The context is as follows: One DexExpress AspxGridView with a server-side paging/filtering/sorting mechanism (using ObjectDataSource). I've been having problems with the filter mechanism ( see this stack ). Now, the problem I'm having is this: the client-side events get mangled between DataSource events. :O . Let me explain what happ...

ASP.NET application stopping event?

I have a ASP.NET application which implements a custom in-memory cache. I'm using this as opposed to ASP.NET's caching mechanism as I needed a more complex way to handle what to drop from the cache. Part of this custom cache is a separate thread which occasionally searches for data to drop from the cache whenever it gets too large. Wha...

Problems with registering click event listener to a frame-element

Hi everybody, I ran into a problem with adding an event listener. I wrote a Firefox plugin a while ago for my bachelor thesis. It was based on a different attacker model than you would normally expect. In this scenario the attacker was the service provider (like Facebook, Google,...), who reads all your private data stored on their site...

scala event swing :: chicken or egg

hello, how can I handle a situation, where a filed listens to a buttons that is not declared yet? val detail = new BoxPanel(Orientation.Vertical){ listenTo(button) } val seznam = new BoxPanel(Orientation.Vertical){ val button = new Button("But"){ reactions += { case ButtonClicked(_) => detail.conten...

jquery not select?

i have a click event for $('#blah div'). div has text inside of it (not inside a div, span, p, etc) and has a textarea in it. The textarea is triggering the event as well, how do i make it only trigger when i click the text and ignore the textarea? ...

How to bind events in Jquery for an element created after document load?

Hi folks, I have a set of list items in unordered lists that I bind the anchors inside them to fire when clicked. The thing is: Some ul's are created (via ajax) when I click on some of the li's created in the first place, binded in the jQuery's document.ready. And I want this li's that are created dinamically to fire as well. Can I do t...

Force repaint after button click

consider this piece of scala swing code detail.reactions += { case ButtonClicked(but) => detail.contents += new Label(but.text) detail.background = new java.awt.Color(0,255,0) } the detail is of FlowPanel type. When the button is clicked, the color is instantly repainted, but the Label is not. It gets visible as I click the...

Handling events from user control containing a WPF textbox

In order to take advantage of the spell checking ability of WPF textboxes, I have added one to a user control (with the use of elementhost). This user control is used in various window forms. My current problem is trying to handle keyup events from this textbox but the windows form is unable to "get" any event from the control. I can acc...

ItemAdded Event for document library in sharepoint 2007

hi I am having a document library in share point 2007, I want to validate certain custom properties before a document is uploaded Or Properties are entered when Edit properties event is cliked. I am trying to validate the fields at ItemAdding event whne a documetn is uploaded , however when EditForm.aspx opens up for editing properties,...

click event not trigerred in IE

I am trying to trigger a click event for a button from jquery. it works very well in FF but IE(all versions) seem to ignore it. this is what i have tried so far.. $('#uxcSubmit').trigger('click'); then tried this.. $('#uxcSubmit').click(); just to clear out..even this.. jquery('#uxcSubmit').click(); then even tried this to check...

SWT: How do you register KeyUp events when no Control have focus?

Im am making an Java SWT program that is required to run on both Linux and Windows. I use the following Code to listen for KeyUp events: Control.addListener(SWT.KeyUp, new Listener() { public void handleEvent(Event arg0) { System.out.println("Event"); } }); But this does not trigger when no control has focus. Do anyone know of a...

Flash AS 3.0 building a message console approach

I am having trouble figuring out how to build a console for my application so i can send msgs to it from any class in the package. i tried to send a generic Event, but I cannot find a way send a msg together with the event, or at least a reference to the object which is dispatching the event. what approach would you suggest? ...