Tagged Questions
The nsevent tag has no wiki summary.
4
votes
4answers
489 views
Click-through buttons and not raising the window
The iTunes mini-player (to give just one example) supports click-through where the application isn't brought to the front when the play/pause and volume controls are used.
How is this done?
I've ...
3
votes
1answer
622 views
Modify NSEvent to send a different key than the one that was pressed
I'm trying to create an OS X keyboard hook for assistive technology purposes (i.e. don't worry, not a keylogger).
When a user presses a key, I want to prevent the real keypress and send a fake ...
3
votes
2answers
3k views
how to handle key events in iphone
Hi
I am working on an iphone application and want to handle keyboard events in iphone. In Mac, there is a class NSEvent which handles both keyboard and mouse events, and in ios (iphone/ipad) the ...
2
votes
1answer
163 views
Send NSEvent to background app
I need to send the key combo ^⌘C to a background app with the bundle identifier com.company.app. The key combo should then activate a menu item in that application.
Unfortunately, I have no clue how ...
2
votes
4answers
481 views
How to pass scroll events to parent NSScrollView
I need fixed-size NSTextViews inside a larger scrolling window. IB requires that the textviews be inside their own NSScrollViews, even though their min/max sizes are fixed so that they won’t actually ...
2
votes
2answers
212 views
Sending CGEvents keystrokes to background apps
I am trying to send enter key to a background app like this:
CGEventRef a = CGEventCreateKeyboardEvent(eventSource, 36, true);
CGEventRef b = CGEventCreateKeyboardEvent(eventSource, 36, false);
...
2
votes
2answers
248 views
NSTextfield + NSMenu and first responder
I'm trying to implement my own autocomplemention system (result is pull from an sqlite database)
I've set up a NSTextField and the appropriate delegate. Each time the text in the NSTextField change, ...
2
votes
2answers
582 views
Mouse Down events in Objective-C
I know this question has been asked a lot before, but nothing will work for me. The following code will not do anything at all.
- (void) mouseDown:(NSEvent*)event {
NSLog(@"It worked!");
}
I ...
2
votes
1answer
413 views
Capture key press events while NSMenu is open
I'm interested in capturing key presses while a NSMenu is open. For example, if the menu is open and the user presses "e", or "1" on the keyboard, send a particular message (preferably passing an ...
2
votes
1answer
634 views
Right-click on a NSStatusItem
I have a NSStatusItem and I want to popup a menu by rightclicking the item. I subclassed a NSView and overwrote the - (void)rightMouseDown:(NSEvent *)event method. I also implemented - ...
2
votes
2answers
732 views
How to store (and use) the current mouse position?
What is the best way to store the current mouse position (system-wide) and then (later) put the mouse at that stored point?
[NSEvent mouseLocation] gets me the position, and I can move the mouse with ...
2
votes
2answers
1k views
Device Information from NSEvent/CGEvent
My application uses an event tap to capture keyboard events, and I'd like to know which device (i.e. which keyboard) each event comes from. Is there an sort of device-identifying information along ...
1
vote
1answer
38 views
How to get mouse cursor not to move while dragging inside a custom NSView?
I have a custom NSView and I want the user to be able to click and drag inside it. NSView of course will receive the mouse drag events and respond appropriately. While the mouse is being dragged I ...
1
vote
1answer
71 views
Returning nil from addLocalMonitorForEventsMatchingMask: block doesn't suppress events
The following code doesn't suppress mouse drags in my app:
[NSEvent addLocalMonitorForEventsMatchingMask:NSLeftMouseDraggedMask handler:^(NSEvent *event) {
return (NSEvent *)nil;
}];
I'm still ...
1
vote
1answer
57 views
Wrong location using [NSEvent mouseLocation]
I make a iphone remote mouse controller application for Mac: the iPhone application sends the coordinate values to the Mac, which then processes mouse location value.
To get the current mouse ...
1
vote
1answer
85 views
Overlay Mouse Image in Cocoa / OSX
I need to capture the framebuffer and save it into the file,
i am using son of grab example code to capture the buffer, but it doesn't give me the mouse pointer,
So i am drawming the mouse pointer ...
1
vote
2answers
83 views
Detecting Ctrl + Return or Ctrl + Enter presses
I find it very hard to find anything official on this matter.
I have a TextView and override the keyDown event and try to detect if the user pressed ctrl + enter.
- (void)keyDown:(NSEvent *)theEvent
...
1
vote
3answers
206 views
Receiving double-click event
I've been searching the Apple docs and the only function I could find pertaining to a double click just returned the acceptable time between clicks for it to be considered a double click.
Can someone ...
1
vote
1answer
50 views
device from NSEvent
I have an application that uses a barcode scanner. I want to be able to determine who pressed a key: the keyboard or the barcode scanner. I tried all the methods from the NSEvent, but I didn't find ...
1
vote
1answer
171 views
Mouse Events Bleeding Through NSView
I have an NSView which covers it's parent window's content view. This view has a click event handler which removes it from the content view. Inside this view, I have another view. When I drag the ...
1
vote
1answer
386 views
Check modifierFlags of NSEvent if a certain modifier was pressed but no other
I just experimented with the addLocalMonitorForEventsMatchingMask:handler: method in NSEvent and came across the following question: How do I find out if only certain modifiers were pressed?
A short ...
1
vote
1answer
96 views
Detecting if ANY window is being dragged
Is there a way (without using any undocumented API) to figure out if ANY window (not just the application from which the code is running from) is being dragged?
I can use
[NSEvent ...
1
vote
0answers
126 views
NSEvent doesn't work
Can somebody tell me what's wrong with the following code. I want to simulate an "a".
NSEvent* keyEvent = [NSEvent keyEventWithType:NSKeyDown location:NSZeroPoint modifierFlags:NSCommandKeyMask ...
1
vote
1answer
123 views
Using DDHotKey wrapper for cocoa/carbon instantiate NSWindow
With the help of Dave DeLong and others on stackoverflow I've given my tutorial app a cool hotkey effect but I can't figure out how to make it instantiate the window.
I have the following setup:
A ...
1
vote
1answer
218 views
NSView not receiving magnifyWithEvent:
I've got a custom NSView and I want to receive the pinch to zoom event. I understand I've got to implement
-(void)magnifyWithEvent:(NSEvent *)event
But, I'm finding that my view is not receiving ...
1
vote
1answer
278 views
Difference between NSNotification and NSEvent
I don't really understand the difference that cocoa makes between a notification and an event.
For instance I could have code like this:
-(void)mouseMoved:(NSEvent*)event { … }
but not
...
1
vote
2answers
294 views
NSMenu Pressed Mouse Button in 10.5
I’m updating (downdating?) an application I’ve written for 10.6+ to work in 10.5+. I’m struggling with capturing the currently pressed mouse button in the -(void)menuWillOpen:(NSMenu *); selector.
...
1
vote
1answer
165 views
Send a MouseEvent to a NSView (WebView) from code
i am trying to send mouseevent (MouseClick or RightMouseClick) to a NSView... in my case a WebView, that contains a loaded Website. I want to script some clicks on links etc. How is it possible to ...
1
vote
2answers
340 views
NSEvent modifier flags not updating until mouse moves
In Mac OS X 10.6, NSEvent has a +modifierFlags class method to determind the currently pressed modifier flags. In 10.5, using [[NSApp currentEvent] modifierFlags] only updates after mouse move. Is ...
0
votes
0answers
47 views
Drawing a line that following mouse cursor using CGContext
I am trying to draw a line from exact position (x,y known point) to the mouse cursor's location while mouse is dragged. Here is my code;
- (void)drawDinamicLine:(CGPoint)movePoint {
CGContextRef ...
0
votes
1answer
24 views
How to monitor global use of OSX application services?
Open a TextEdit document with a few words in it. Notice that when you right click on a word, you can click "Look up (Word)" to get its definition or "Speech Start Speaking" to hear it read out aloud.
...
0
votes
0answers
66 views
NSEvent mouse event
There is probably a really simple solution to this, but I can't seem to get it to work:
All I am trying to do is left click somewhere on my window and return the value of the pixel I clicked on (x ...
0
votes
2answers
104 views
NSOpenGLView, NSWindow & NSResponder problem. makeFirstResponder not working
In the code below I am Initialising a ViewController [a NSResponder], with a NSWindow, a NSOpenGLView, presenting the view and attempting to set the ViewController as the windows first responder.
It ...
0
votes
1answer
57 views
How to monitor and modify NSEvents dispatched to the other applications?
I'm aware of the following two methods, but they both have limitations:
addGlobalMonitorForEventsMatchingMask:handler:
addLocalMonitorForEventsMatchingMask:handler:
I;m working on a utility ...
0
votes
0answers
40 views
NSLeftMouseUp NSEvent question
Drag a file into a textField and by default the path is displayed. I need to add additional functions that occur when the user releases their left mouse button. Code not working. How can I accomplish ...
0
votes
1answer
250 views
CGEvent NSKeyDown only working if app is front most?
I am trying to automate some tasks (there's no applescript support) so I have to use CGEvents and post these events. Mouse clicking works fine, but NSKeyDown (enter) only works if I click on the app ...
0
votes
1answer
227 views
Using arrow keys in cocoa?
I was doing a little research into this, and I found
this
question. I implemented the code used there, but nothing happened. Here is the exact code I am using:
.h file
#import <Cocoa/Cocoa.h>
...
0
votes
1answer
112 views
Hooking [NSEvent mouseLocation] at the system level?
So I'd like to be able to hook [NSEvent mouseLocation] at the system level, and basically have it return what I'd like.
This is due to being unable to send mouse events to games, since they fire of ...
0
votes
3answers
493 views
Getting function key press on NSSearchField without subclassing
I have a simple application which has an NSSearchField and I want to know if the user presses, for example, an arrow key. I don't want to subclass, because I want to modify the values of the IBOutlets ...
0
votes
2answers
96 views
Copy current selection on hotkey
I want to copy the current selection, even if it's in another application like Mail, when the user hits a specified hotkey like Cultured Code does it in Things when you create a new task. I got the ...
0
votes
1answer
171 views
CGEventPostToPSN not working for cgkeycode (56)
I am trying to send keyboard event to a process. Seding keys like 'a', 'v' 't' ... works fine but keys such as space, command, control doesn't work. Here's what I am doing:
CGEventRef e1 = ...
0
votes
0answers
212 views
NSEvent -(void) keyDown help needed [closed]
I am wondering if there is anyone that is willing to upload a zip example for how to make keyDown event's on cocoa. I'm desperate :(
0
votes
0answers
227 views
Mouse Down events in Objective-C? [closed]
Possible Duplicate:
Mouse Down events in Objective-C
I know this question has been asked a lot before, but nothing will work for me. The following code will not do anything at all.
This is ...
0
votes
0answers
57 views
How to post keyboard events for special characters?
I'm able to simulate keystrokes like esc and every letter which exists on the keyboard. But what's about special characters which doesn't exists on the keyboard? For example: How can I simulate ⇔ € ?
0
votes
1answer
330 views
- (void)mouseDown:(NSEvent *)theEvent not firing
I have got :
myViewController.m
myViewController.h
myView.xib
In myViewController.m, I added the following :
- (void)mouseDown:(NSEvent *)theEvent {
NSLog(@"mouseDown: entered");
}
When ...
0
votes
0answers
116 views
Canceling NSMenuItem update calls
Here's the challenge:
I've got an NSMenu whose delegate populates it using the delegate methods:
- (NSInteger)numberOfItemsInMenu:(NSMenu *)menu
and
- (BOOL)menu:(NSMenu *)menu updateItem:(NSMenuItem ...
0
votes
1answer
228 views
NSEvent - NSLeftMouseDown
I'm trying to trigger basic functions using NSEvent and mouse clicks. For example close the window when pressing left mouse button. What else do I need in this method?
Thanks.
- ...
0
votes
4answers
655 views
Cocoa - NSEvent Respond to the SHIFT key?
I was wondering if NSEvent responds to the "Shift" key on the keyboard. I am logging the keyCodes when debugging my app and I don't get a keyCode value for the shift key.
Thanks,
Kevin
EDIT: This ...
0
votes
1answer
368 views
AppKit framework and NSEvent.h in Cocoa Touch
I want to write a method that needs NSEvent defined, so I need NSEvent.h. The SDK I am using (3.1.3) doesn't seem to have NSEvent.h within its frameworks. I found that it is in AppKit.framework, ...
0
votes
1answer
161 views
NSEvent feeding to system
Can someone show an example on how to create an NSEvent that simulates pressing return?