使用applescript在最前面的应用程序中复制选择

时间:2015-04-05 09:26:38

标签: cocoa applescript nsapplescript

我正在尝试使用以下代码将所选文本复制到Cocoa应用程序中的剪贴板:

NSString * copyStr =@"tell application \"System Events\" to key code 8 using command down";
copyScript = [[NSAppleScript alloc] initWithSource:copyStr];
NSAppleEventDescriptor *aDescriptor = [copyScript executeAndReturnError:&errorDict];

不幸的是没有任何反应。 你知道这可能是什么问题吗?

2 个答案:

答案 0 :(得分:1)

以这种方式捕获目标应用程序选择,如果它接受命令。

您需要将其设为Active App。 因为您正在使用这样的复制功能,所以您不需要添加进程tell块。但是有些GUI命令不需要使目标应用程序处于活动状态,只需使用tell application process块。 使用它是个好习惯..

因此,如果您决定或需要在tell application process中使用流程名称,您也可以使用 NSString stringWithFormat:

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {

    [self runApplescriptCopy:@"Safari"];

}



-(void)runApplescriptCopy:(NSString*) processName{


    NSDictionary * errorDict;
    NSString * copyStr = [NSString stringWithFormat:@"tell application \"%@\"  to activate \n tell application \"System Events\" to tell application process \"%@\" to  key code 8 using command down",processName ,processName ];
    NSAppleScript * copyScript = [[NSAppleScript alloc] initWithSource:copyStr];
    NSAppleEventDescriptor *aDescriptor = [copyScript executeAndReturnError:&errorDict];


}

答案 1 :(得分:0)

您应该在块中添加进程名称。 (这是动态写出来的)

tell app "processname" to activate
tell app  "System Events"
    tell app process "processname"
         key code 8 using command down
    end tell
end tell