私が欲しいのはコマンドシフトクリックです... [...]ここでソースコードを見つけました:http : //www.r0ssar00.com/2008/12/middle-click-on-mac-code.html ...誰かが数行を追加してコンパイルし、コマンドシフトクリックをクリックしてください。
コードを修正/修正して、Cmd + shift +クリックを実行すると思います(そうでない場合は、他の値を試してください(CGKeyCode)56
-しかし、56はシフトしているようです)
// click.m
//
// Compile with:
// gcc -o click click.m -framework ApplicationServices -framework Foundation
//
// Usage:
// ./click
// Will cmd+shift+click mouse at current location.
//
// Based on http://www.r0ssar00.com/2008/12/middle-click-on-mac-code.html
// For http://superuser.com/questions/13351/how-to-middle-click-on-new-macbooks/13356#13356
// Modified by dbr - http://neverfear.org
#import <Foundation/Foundation.h>
#import <ApplicationServices/ApplicationServices.h>
int main(int argc, char *argv[]) {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSUserDefaults *args = [NSUserDefaults standardUserDefaults];
CGEventRef ourEvent = CGEventCreate(NULL);
CGPoint ourLoc = CGEventGetLocation(ourEvent);
CGPostKeyboardEvent((CGCharCode)0, (CGKeyCode)55, true); // Cmd
CGPostKeyboardEvent((CGCharCode)0, (CGKeyCode)56, true); // Shift
CGPostMouseEvent(ourLoc, 1, 1, 1);
CGPostMouseEvent(ourLoc, 1, 1, 0);
[pool release];
return 0;
}
あなたが言及したリンクで言及されたテクニックと組み合わせて(Javaアプリでコマンドをラップし、MultiClutchを使用します)、それを行うべきです。