Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
5answers
3k views

Get a handle on event listening in JavaScript

Last week we released Omniture's analytics code onto a large volume of web sites after tinkering and testing for the last week or so. On almost all of our site templates, it works just fine. In a few ...
4
votes
3answers
417 views

Saving new entity in PreInsert/PreDelete event listener doesn't persist to database

I configured a PreInsert and PreDelete event listener in NHibernate 2.1. For inserts and deletes on a specific table, I want to write an audit event to a separate auditing table. public class ...
3
votes
1answer
36 views

Javascript: ignore alt-characters

I have an iframe (with designMode set to on) within a page that has a keypress listener in it. The keypress function listens for certain alt-character keystrokes, but I never want these ...
3
votes
1answer
462 views

Titanium appcelerator image view load event listener not working with android

i have an image view, when the image loads i want to make an action, for example an alert.I'm using eventListener method to implement this. here's my code imageView.addEventListener('load', ...
3
votes
2answers
719 views

NHibernate save / update event listeners: listening for child object saves

I have an Area object which has many SubArea children: public class Area { ... public virtual IList<SubArea> SubAreas { get; set; } } he children are mapped as a uni-directional ...
3
votes
2answers
3k views

Fluent NHibernate + Lucene Search (NHibernate.Search)

I'm using Fluent NHibernate and I would like to implement NHibernate.Search with Lucene but I can't find any examples on how to do that with Fluent NHibernate. It appears there are two steps. ...
2
votes
2answers
46 views

making efficient implementation of this Java MouseListener Logic

I have a MouseListener Thread where this method is called each time there is a click: public void mousePressed(MouseEvent event){ //my Logic here } Now what happens is that there are so ...
2
votes
2answers
147 views

Disable arrow keys from scrolling only when user is interacting with <canvas>

I have added an event listener in JS to listen for keyup/keydown events, I am attempting to move a sprite across the HTML canvas. I have that mostly working, but the page is being scrolled when the ...
2
votes
3answers
410 views

how to write C++ code to handle an event raised in C# code

I would like to know how, in C++ code, can i receive and then handle events raised from C# code. I have a C# WinForms UI module that raises an event after collecting some information. I have to ...
2
votes
2answers
774 views

NHibernate: Updating collections during EventListener “PreUpdateEvent”

I'm trying to write an audit tracking for Nhibernate that hooks into the PreUpdate event. I have an AuditLogEntry class (when, who, etc), that contains a list of AuditLogEntryDetails (i.e. individual ...
2
votes
1answer
3k views

jQuery Plugin: Handling Events

I'm currently working on a jQuery plugin and I'm wondering if it would be possible to have the plugin listen for events rather than being triggered by events. So instead of this: ...
1
vote
1answer
35 views

JavaScript - How to detect the value of “useCapture” from an event object?

JavaScript - How to detect the value of useCapture from an event object? I made a function that removes an event listener after firing once or any number of times. This is what I have: /*jslint ...
1
vote
1answer
74 views

Can I use Java's BufferedReader with an event listener rather than while(true)?

I'm in the process of writing a Java client and server, and they're both talking to each other correctly. At the moment, however, the client must always send a message to the server before it can ...
1
vote
2answers
159 views

How to attach submit listener to all forms including those in iframes and nested iframes

I want to attach an event listener to every form on my site so that when a form is submitted, a confirm box will pop up asking if the user is sure they want to proceed. If the user is not sure, I ...
1
vote
1answer
220 views

jquery click listener on remote javascript file

I have a simple link: <a href="#" id="test">Test Link</a> I want to get an alert whenever this link is pressed, so I add: <script> $('#test').click(function() { ...
1
vote
1answer
763 views

Google Maps: Event Listener only remembering final value of variable

I'm putting together a Google Map which contains the locations of various test centres around my country. It plots a marker on each county, and when you click the county marker, it zooms in and gives ...
1
vote
1answer
1k views

NHibernate Event Listeners Persistence - how does it work?

I decided to implement the event listeners in the latest build of NHibernate to keep track of who is making edits and what those edits are. My question is this - the below does work and I can step ...
1
vote
2answers
1k views

Add listener for all element events in WPF

I would like to hook for all available element events in one call. Some thing like this: elem.AddHandler(AnyRoutedEvent, (RoutedEventHandler)handler) How can I do this?
0
votes
2answers
24 views

Disabling button rollover for certain number of frames Flash actionscript 3.0

I'm constructing an area with selectable buttons that transition and appear every 10 frames. During these 10 frame transition periods I don't want the buttons to be selectable and if possible to ...
0
votes
0answers
17 views

Event listener order in IE

The following code runs the functions in the order 1,2,3,4,5 (testing with current versions of FF, Safari, Chrome) but in IE8 (I don’t have IE9) they run as 3,2,4,5,1? Is there a solution to run them ...
0
votes
1answer
38 views

Issue with Relative layout in android-event listener: one child's listener is getting applied to all children

I am having my views inside a relative layout. I did an on-click listener for one of the child views, but the action is getting applied for all the children of the relative layout. How can I solve ...
0
votes
1answer
48 views

(Fluent) NHibernate progress events for lengthy transactions?

We've hooked up the ISaveOrUpdateEventListener event and hoped we could tie it to a progress bar update for each node being visited during the save traversal of a pretty big model, BUT the event only ...
0
votes
0answers
52 views

Event Listener Which Uses WP Mail

Im looking to set up an "event listener" in wordpress that makes use of wp_mail. Basically, I have a custom content type I created. it has fields of the following: order_status = Order status Will ...
0
votes
1answer
103 views

Actionscript 3.0 Keyboard event listener error

I have two functions, rotate and unrotate, and I used a keyboard event listener to listen for key_Down A and B but i get and error: 1119: Access of possibly undefined property A through a ...
0
votes
1answer
301 views

use dojo connect to fire a function other than particular event listener

I have a function which rotates a slide show like startChangeImage(),My slideshow has to stop when there is a mouseover the slide show. am tryin something like this ...
0
votes
1answer
236 views

adding load event listener makes Firefox hang

I am making a Firefox add-on for which I need to add a pageload event listener. Here is my javascript code: window.addEventListener("load", function () { gBrowser.addEventListener("load", ...
0
votes
1answer
300 views

Listening for Multiple Events on Multiple Objects AS3

I currently have an over, out and click event for 8 different objects. The over and out events are identical for each (tween expands object and then shrinks it back for the out state). I have ...
0
votes
2answers
36 views

Wondering if this code excerpt can represent a event listener

Can we call this: $('#nomeInput').keypress(function(){ //code here... an event listener? Thanks.
0
votes
3answers
343 views

Invoke a code after all mouse event listeners are executed

I have created a panel on which a set of objects is drawn. Each of the object is added as a mouse event listener to the panel. As I know, after an event occurs the listeners are notified and the code ...
0
votes
3answers
844 views

How do I reference an object, add a tween to it and put this in an Eventlistener in AS3?

I'm having quite some trouble to try and get an app I wrote in AS2 to AS3. The reason I need to go to AS3 is something icky, so I won't go into detail about it. I've got 90% of the application ...