如何使用Apple Script控制背光键盘?
有没有办法使用 Apple 脚本来控制 Macbook 上背光键盘的亮度?
背光键是 F5
和 F6
。
编辑:
根据@Clark
的建议,我尝试了以下操作,但它不起作用。
NSAppleScript *run = [[NSAppleScript alloc] initWithSource:@"tell application \"System Events\" to key code 96"];
[run executeAndReturnError:nil];
有什么建议吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Amit Singh 有一章介绍如何从 C 语言做到这一点。
https://web.archive.org/web/20200103164052/https://osxbook.com/book/bonus/chapter10/light/
编译该页面上的示例代码很容易并从 Applescript 调用它。
要使 Applescript 键入功能键,您必须使用键代码。功能键前面的按键代码为:
要键入一个,请执行以下操作:
告诉应用程序“系统事件”键代码 96
Amit Singh has a chapter on how to do this from C.
https://web.archive.org/web/20200103164052/https://osxbook.com/book/bonus/chapter10/light/
It'd be easy to compile the sample code on that page and call it from Applescript.
To make Applescript type a function key you have to use the key code. The key codes fore the function keys are:
To type one do something like this:
tell application "System Events" to key code 96