สิ่งที่ฉันต้องการคือ command-shift-click [... ] ฉันพบซอร์สโค้ดที่นี่: 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 ) ก็ควรทำ ..