An event is a way for a class to provide notifications to clients of that class when some interesting thing happens to an object
0
votes
0answers
16 views
VB Net event handling with directx AudioVideoPlayback strange issue
I'm facing off a very strange problem about the event handling..
I have created a class that use DirectX.AudioVideoPlayback and sostantially is a multimedia player with the possibility to loop the ...
0
votes
0answers
12 views
How does WaitForSingleObject handle missed events?
for a multi-threaded application (two threads) I have the following use-case:
Thread A sets an event to reactivate thread B.
Thread B uses WaitForSingleObject() to wait for this event.
Thread A ...
0
votes
0answers
25 views
Why can't I bind events to the elements in a namespace?
I have the following code and I want to listen to a mouseclick event but nothing will happen in this case why?
function Obj(tag){
this.el = ...
0
votes
0answers
17 views
Event Driven Function's return value, Python, PyQt4
Here is the python code:
self.browse=QtGui.QFileDialog
self.btn=QtGui.QPushButton('browse image file')
self.btn.clicked.connect(self.openimg)
def openimg():
...
0
votes
1answer
22 views
how to invoke a method from an Entry Widget in Ruby Tk
I'm looking for an option or a way to bind an event, which invokes a method from an Entry-Widget.
Like the command option for button-widgets: command { method } or
like binding an event for ...
0
votes
0answers
30 views
Actionscript 3 Where do Events pass through and how is target obtained?
I am currently trying to understand the Event Flow of Actionscript 3, for that I am trying to implement the AS3 Event Flow in Java.
I already read ...
0
votes
1answer
23 views
Lower Keyboard sensitivity in java keyhandler?
private class KeyHandler implements KeyEventDispatcher{
@Override
public boolean dispatchKeyEvent(KeyEvent e) {
if(e.getKeyCode() == KeyEvent.VK_RIGHT){
...
0
votes
1answer
35 views
AngularJS: how to preventDefault() of an event after promise completes?
I have some code like this:
$scope.$on("$locationChangeStart", function(event, newPath, oldPath) {
// Do some sync checks
if (!$scope.isPageAllowed($location.path()))
{
// ...
1
vote
0answers
30 views
MFC - Adding event handler for dialog button
I have a CView class and a dialog in it, and I want to get some data from the dialog object once the user clicks on its "Accept" button, so I have added an event for the button and its handler in the ...
2
votes
1answer
35 views
Swing: Delegate events to child components of transformed parent
I've got a custom component GameViewCanvas extends JPanel that will hold a number of tiles (800x800 textures). Now in GameViewCanvas I've overridden the paint() method, so that it will paint the ...
0
votes
2answers
45 views
C# events change sender state
Modify the sender's state in events (aside from being a mutable object), is this considered bad practice?
All event examples I've found are very simple and only do something like ...
0
votes
1answer
16 views
Overriding parent prototype method for event handling
I am using the following code jsFiddle to work with form fields and events. I have previously asked two questions regarding this and they have helped me tremendously. Now I have a new ...
1
vote
0answers
21 views
jQuery and custom events [closed]
I have this event that gets triggered from within a frame:
window.top.$(window.top.document).trigger('object-selected',['Custom', 'Event']);
In the parent window, I listen like so:
...
1
vote
1answer
33 views
How to update GUI based on status
I have a JList of object "Test" that is using a custom ListCellRenderer to show the name of the test and an icon next to it. The icon represents the status of the test (Warning, Ready, Running, Done). ...
0
votes
1answer
17 views
Javascript support for touch without blocking browsers pinch support
I have a little web gallery that I added swipe navigation to for mobile browsers. I did it with pretty simple touchstart/touchmove/touchend event tracking.
The problem is that when I try to pinch ...
2
votes
1answer
33 views
Event system similar to C# (.NET?)
In C# (atleast using .NET, but I think it's general), you can create events like this: Understanding events and event handlers in C#
Is there a similar mechanism for C++?
I've never liked ...
0
votes
0answers
8 views
.Net How to prevent DataTable returned to event subscribers from being changed by them to guard against iteration problems
I have a publisher class that needs to provide periodic data updates to 2+ subscribers.
I made an event that returns a datatable with the latest copies of the data.
My worry is that the same object ...
1
vote
1answer
46 views
Blur event triggered on focus
I am using the following code jsFiddle:
function Field(args) {
this.id = args.id;
this.name = args.name ? args.name : null;
this.reqType = args.reqType ? args.reqType : null;
...
0
votes
1answer
15 views
Backbone js: change event clobbering click event
I've got an order form with fields including a textarea and a 'COMMIT' button. The fields are autosaving, i.e. the moment a field's value changes, it is saved to the db. The COMMIT button changes the ...
0
votes
1answer
38 views
Why is event in firefox undefined when defining a pseudo event with MooTools?
I am trying to define a pseudo event with MooTools. It works in chromium, but not in firefox. Both browser are the newest stable version.
Here is my event:
DOMEvent.definePseudo('ctrl', ...
0
votes
1answer
15 views
Open hyperlink after jquery scroll event
I'm looking for a script that automatically opens a hyperlink after a jquery scroll event. This is the script I have so far:
$(document).ready(function() {
$("a.anchorLink").anchorAnimate()
});
...
0
votes
3answers
33 views
Event Handling in Javascript using Prototypal Inheritance
I am trying to enable Event Handling in JavaScript. This is what I have so far:
function Field(args) {
this.id = args.id;
this.name = args.name ? args.name : null;
this.reqType = ...
0
votes
3answers
23 views
EventHandler with FormClosingEventArgs - C#
I have this closing form code in my Form.cs
public void label7_Click(object sender, FormClosingEventArgs e)
{
MessageBox.Show("Are you sure you want to exit?", "Confirmation", ...
0
votes
1answer
24 views
Kendo multiselect, trigger an event when an item is removed
I use the multiselect from the Kendo UI.
I want to know if there is any way to trigger a function, when the user deletes an item from the multiselect.
So far I know that the 'change' event is ...
0
votes
0answers
16 views
How come an event is raised after removal?
In my program I create GridSplitters at runtime and add an eventhandler to them, like this:
// Create GridSplitter
gs = new GridSplitter();
Grid.SetRowSpan(gs, tileView.RowsCount);
Grid.SetColumn(gs, ...
0
votes
1answer
27 views
Add change event handler for custom Container of ExtJS
I have created a View by extending Ext.container.Container and have given it an alias widget.myCustomView. Since I'm using it in different places.
The view as usual Ext form components like ...
0
votes
0answers
9 views
Threading events using greenRobot EventBus
I've just started looking at greenRobot EventBus for Android and have a question about threading.
I have a long-running process that I'd like to run on a background thread which, when completed, ...
0
votes
0answers
13 views
log4j error with NTEventLogAppender on Windows 7 (64 bit)
I am running into the following errors when I use log4j's NTEventLogAppender. I already copied the NTEventLogAppender.amd64.dll and NTEventLogAppender.dll to C:\Windows, C:\Windows\System32, and ...
1
vote
0answers
9 views
Google Analytic Event tracking count fail
i faced a strange problem when i use event tracking to track a link. For example, i have a link
<a href="a.html" onClick="_gaq.push(['_trackEvent', 'cool', 'Click', 'link1']);" ...
0
votes
2answers
33 views
Binding an action in an itemtemplate to an event
I have listboxitems in a list-box that are being populated dynamically from an observable collection and I'm trying to use a Interaction trigger for the 'Selected' event of the listbox item to launch ...
0
votes
1answer
11 views
How to set a timeout specifically dealing with the absence of a continue event for a node.js http.ClientRequest object
I am trying to configure a client in node.js that will send data after several seconds if a 100-continue response is not received, but was requested by the client. The snippet below does that. ...
0
votes
0answers
13 views
How do I change the privacy for events to public?
I have been trying for almoast a day now to find out how to make my event public!
I am trying to find to option "Public" but i can only choose between Friends of Friends, friends of guests or closed.
...
0
votes
2answers
47 views
Youtube/vimeo iframe won't play in firefox
I am embedding a youtube/vimeo video onto my site with an iframe.
<iframe src="http://www.youtube.com/embed/{$entity->getYoutubeVideoID()}" ...></iframe>
The ...
1
vote
0answers
29 views
Mimicing event inside callback function from external of callback
Upon a given event, I wish to trigger a given action. In particular, I would like to hide an editor by performing tinymce.editors['myID'].hide();. Turns out this method is only available within the ...
0
votes
0answers
19 views
Firing a timed event on AWS server
I have a web server running on AWS which is connected to a mysql database. The database has an event that run once a day. I need to run a php script on the same schedule which checks the DB and then ...
0
votes
1answer
17 views
Event on didSelctItemAtIndexPath when this is into header - iOS
I was building a app on iOS, and in a collectionView I have a header, and needs create event "touch up inside" for this header, like i 've create in the others cells of the collectioView
...
0
votes
1answer
59 views
How to get event name in called method
I am using reflection to add an event handler to an event :
var eventInfo = type.GetEvent(eventName);
MethodInfo mi = GetType().GetMethod("TestMethod",
BindingFlags.Instance | ...
0
votes
2answers
38 views
Global function repository
I have several Control such as ToolStripMenuItem and Button that need to have a function bound to their click event. They will either generate a new Form or add a TabPage to a current TabControl. I ...
2
votes
2answers
53 views
KeyDown before TextChanged event
I wonder if it's possible to make KeyDown event trigger before TextChanged?
I have added these two events for a simple TextBox and now I want to check if Delete key was pressed. If yes, <do ...
-3
votes
0answers
9 views
FQL Event last modified time [closed]
Is there any field in event table for last_modified time, not last update ? I want to search all events that was modified by new antedees, rejections, unsures from a certain time ?
0
votes
1answer
26 views
how to remove a gallery call when i click in any other button in AS3.0?
so i have this photo gallery with 2 external classes, this code is the timeline code that calls the classes in to import the gallery and make it work.
So far so good, the problem starts when i want to ...
1
vote
1answer
30 views
WPF TreeView item clicked
I am a problem with the event in WPF. Say I have a underlying data model and a tree view to present the data. The simplest thing I want to do is, when I click on one item, I would do something with ...
0
votes
0answers
29 views
waiting for event to be handled to continue executing the function that has triggered the event
i'm looking for an elegant, efficient solution to my problem :
i have this webapp with many components;
one main component include many additions that will grow/evolve with time
this main component ...
4
votes
3answers
72 views
How can I check that a window has been closed in JavaScript?
For example, I have JavaScript like this:
windowHandle = window.open('http://www.irt.org/','testWindow','height=200,width=200');
I would like to check whether the 'testWindow' is closed and run a ...
-3
votes
0answers
38 views
How can I view my friends Facebook events? [closed]
Ever since the new timeline rolled out I am no longer able to view my friends Facebook events.
This was extremely helpful when trying to find something to do by browsing events my friends are ...
0
votes
3answers
27 views
How do I simulate a click event in VB Windows Forms
I just want to connect two arbitrary controls, so that if one is clicked, the other should act as though it's clicked - is this even remotely possible? it seems like it SHOULD be so easy, but the ...
2
votes
2answers
55 views
Type-safer way to implement event driven architecture?
I'm trying to implement a extendable even driven architecture in Java. Unfortunately I can't make it totally type safe. The following is what I did.
First I define the event. It's an almost empty ...
0
votes
1answer
51 views
How do I get element.onclick working in Firefox?
I cant figure this out for the life of me.
I've dynamically created an element and i need to add a click event to it though it needs to work in all browsers right up to ie7.
var bottle = ...
0
votes
0answers
26 views
onblur replacement in case of multiple input elements
I've got a webpage with some text structure. I want the structure to be a editable in an "in place" manner.
In some cases it's fairly easy (at least so far). I make onclick event that sets display: ...
-2
votes
0answers
18 views
Search and Fetch URL Using PHP [closed]
I want to create a small snippet, which will Take in Search Keywords of an event and search for the event on a specific website and retrieve its exact URL.
For example, I want to give user the ...



