Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
467 views

Strange behaviour when posting CGEvent to PSN

EDIT - not getting much input on this so here's the skinny. I'm posting keyboard events to a PSN. I then switch to another window, post some more events (this time tat session level) and switch back ...
3
votes
2answers
2k views

Performing a double click using CGEventCreateMouseEvent()

I'm using the following code to simulate a click of the mouse: void PostMouseEvent(CGMouseButton button, CGEventType type, const CGPoint point) { CGEventRef theEvent = CGEventCreateMouseEvent(NULL, ...
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
1answer
125 views

Event Tap(CFMachPortRef) problem for Hot Key- callback is not invoked

I am developing a desktop application that supports one of the feature through Hot Key. I am using Event Tap for this to work. But, sometimes (randomly) the callback is not invoked; Hot Key does not ...
2
votes
1answer
181 views

Application randomly stops receiving key presses (CGEventTaps)

So, I've wasted a bunch of time creating this really cool keyboard macro application. It works great, the only problem is that after a couple minutes, it just stops working. It ceases to get called ...
1
vote
1answer
253 views

How do I process a mouse click using Quartz events?

I have a CGEventTap and I would like to observe and process all system mouse click events. Detecting a mouse click event is easy, but I don’t want some of the clicks to get processed by the rest of ...
1
vote
1answer
388 views

Can't block capslock with CGEventTap

I'm using Quartz CGEventTap in an attempt to globally intercept capslock presses and block them (to have them do something useful instead). I succesfully detect capslock presses but have so far been ...
1
vote
1answer
185 views

How do I use CGEventKeyboardSetUnicodeString with multiple characters?

I'm trying to use event taps to create an OS X program that will listen for Yiddish typed in transliteration and post the result in Hebrew characters. I made a very short program to test one things ...
1
vote
1answer
890 views

Event taps: Varying results with CGEventPost, kCGSessionEventTap, kCGAnnotatedSessionEventTap, CGEventTapPostEvent

I'm running into a thorny problem with posting an event from an event tap. I'm tapping for NSSystemDefined at kCGHIDEventTap, then replacing the event with a new one. The problem I'm running in to is ...
0
votes
1answer
37 views

Handling CGEventTaps in an NPAPI plugin

I'm trying to create an NPAPI plugin to listen to the Media Keys on a macbook and pass that to javascript to control things like pandora or soundcloud. I'm using Spotify's SPMediaKeyTap library, ...
0
votes
1answer
34 views

Detecting internal or external devices in event tap

I am using an event tap in a Mac app to detect key presses and mouse movements. For the next step I would like to distinguish between an internal keyboard/trackpad and an external ...
0
votes
1answer
125 views

CGEventCreateKeyboardEvent and CGEventTapLocation

I'm having a hard time dealing with custom keyboard events. I want to be able to send any key with / without kCGEventFlagMasks like command, alt, ctrl, shift... e.g. I want to send the current ...
0
votes
1answer
251 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
177 views

CGEventTap blocks application input

I'm trying to use CGCreateEventTap to monitor global mouse clicks, however when I do this it seems to block interaction with my own app. Mouse clicks in other running apps work fine, but my own app ...
0
votes
1answer
390 views

CGEventCreateKeyboardEvent on Desktop vs MacBook

Ola Folks, Once again I want to drink from the pool of knowledge shared by people using SO. I have written a small app for OSX that sends key events to an application. I am targeting OSX 10.5.x and ...