CGEventSourceSetLocalEventsSuppressionInterval`當編程移動鼠標光標,必須設置CGSetLocalEventsSuppressionInterval
到0
這樣的事件實時進來作爲一個250毫秒的延遲反對。使用',而不是過時的`CGSetLocalEventsSuppressionInterval`
不幸的是,CGSetLocalEventsSuppressionInterval
在Snow Leopard中被標記爲已棄用。
另一種方法是CGEventSourceSetLocalEventsSuppressionInterval(CGEventSourceRef source, CFTimeInterval seconds);
https://developer.apple.com/library/mac/#documentation/Carbon/Reference/QuartzEventServicesRef/Reference/reference.html#//apple_ref/c/func/CGEventSourceSetLocalEventsSuppressionInterval
-(void) mouseMovement:(CGEventRef) newUserMouseMovement
{
//Move cursor to new position
CGSetLocalEventsSuppressionInterval(0.0); //Deprecated in OS X 10.6
CGWarpMouseCursorPosition(NSPointToCGPoint(newMousePosition));
CGSetLocalEventsSuppressionInterval(0.25); //Deprecated in OS X 10.6
//--OR--//
CGEventSourceRef source = ???;
CGEventSourceSetLocalEventsSuppressionInterval(source, 0.0);
CGWarpMouseCursorPosition(NSPointToCGPoint(newMousePosition));
CGEventSourceSetLocalEventsSuppressionInterval(source, 0.25);
}
我不能得到後者的方法來工作。
所以我想我的問題是如何獲得該功能所需的CGEventSourceRef
?
它是用戶正常鼠標移動的事件源嗎?或者爲我的手動翹曲的光標?
我無法找到變形的'CGEventSourceRef'。蘋果文檔聲明瞭「沒有生成或發佈事件」的經編作品,所以我不確定它是否有源代碼。從我剛剛接受的答案,'CGAssociateMouseAndMouseCursorPosition(true);'與扭曲一起工作! – cksubs 2013-07-09 21:51:54