I've been using CGPostMouseEvent() for performing mouse clicks since mac os 10.4.

While working on my code and trying to make it 100% compatible with Snow Leopard, XCode spit a warning saying that CGPostMouseEvent() is deprecated. While this doesn't scare me, I'd like to know what replaces CGPostMouseEvent(). This is how I use it:

CGPostMouseEvent(point,FALSE,1,TRUE);  // mouse down
CGPostMouseEvent(point,FALSE,1,FALSE); // mouse up

That's all.

Any ideas?

Thanks!

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

CGEventCreateMouseEvent can be used with CGEventPost in a non-deprecated fashion. The reference is here.


Edit from OP:

Something like this?

void PostMouseEvent(CGMouseButton button, CGEventType type, const CGPoint point)
{
    CGEventRef theEvent = CGEventCreateMouseEvent(NULL, type, point, button);
    CGEventSetType(theEvent, type);
    CGEventPost(kCGHIDEventTap, theEvent);
    CFRelease(theEvent);
}
link|improve this answer
something like this: void PostMouseEvent(CGMouseButton button, CGEventType type, const CGPoint point) { CGEventRef theEvent = CGEventCreateMouseEvent(NULL, type, point, button); CGEventSetType(theEvent, type); CGEventPost(kCGHIDEventTap, theEvent); CFRelease(theEvent); } – Uri Sep 27 '09 at 13:49
oops, sorry for the poor formatting – Uri Sep 27 '09 at 13:50
At first glance that looks about right. – phoebus Sep 27 '09 at 13:58
It seems to be working great! Thanks – Uri Sep 27 '09 at 14:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.