.netcore调用执行applescript

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.netcore调用执行applescript相关的知识,希望对你有一定的参考价值。

参考技术A 1、打开搜索并输入ScriptEditor,启动脚本器。
2、打开词典。
3、查看词典里面轿粒列出来所有支持AppleScript的App和所支持的接口,调用即可。

无法在“邮件”应用程序中执行 AppleScript

【中文标题】无法在“邮件”应用程序中执行 AppleScript【英文标题】:Not able to Execute AppleScript within "Mail" application 【发布时间】:2012-12-03 03:28:10 【问题描述】:

我已经创建了一个邮件插件,并在外发邮件的“发送”按钮旁边添加了“按钮”,

现在我也想从我的 Button 发送外发邮件,我也为此编写了 applescript

activate application "Mail"
tell application "System Events"
    tell application process "Mail"
        log "foo"
        tell menu bar 1
            tell menu bar item "Message"
                tell menu "Message"
                    click menu item "Send"
                end tell
            end tell
        end tell
    end tell
end tell

此脚本在 Applescript 编辑器中运行,但无法通过我的按钮单击运行

我也在 Xcode 中执行了 applescript,比如

NSURL* url = [NSURL fileURLWithPath:path];
NSDictionary* errors = [NSDictionary dictionary];    
NSAppleScript* appleScript = [[NSAppleScript alloc] initWithContentsOfURL:url error:&errors];
[appleScript executeAndReturnError:&errors];

执行脚本后出现错误:-

NSAppleScriptErrorAppName = "System Events";
NSAppleScriptErrorBriefMessage = "Can't get menu bar 1 of application process \"Mail\". Invalid index.";
NSAppleScriptErrorMessage = "System Events got an error: Can't get menu bar 1 of application process \"Mail\". Invalid index.";
NSAppleScriptErrorNumber = "-1719";
NSAppleScriptErrorRange = "NSRange: 0, 0";

所以我已经尝试了所有的东西但没有成功。

所以请帮我解决这个问题

感谢您的任何建议或帮助。

【问题讨论】:

【参考方案1】:

那个菜单项确实有一个键盘快捷键,所以你也可以使用它。你试过了吗?

activate application "Mail"
tell application "System Events"
    tell application process "Mail"
        keystroke "d" using command down, shift down
    end tell
end tell

【讨论】:

以上是关于.netcore调用执行applescript的主要内容,如果未能解决你的问题,请参考以下文章

在 asp.net core 5 MVC 视图中从 C# 代码调用 JavaScript 函数

调用DoSomething方法执行一些逻辑代码

ASP.NET Core 进程内(InProcess)托管

Istio实践- 路由控制及多应用部署(netcore&springboot)

在 docker 中执行编译的 .NetCore 控制台

asp.netcore控制器是怎么调用的