如何使用Apple Script控制背光键盘?

发布于 2024-12-06 03:26:28 字数 369 浏览 0 评论 0 原文

有没有办法使用 Apple 脚本来控制 Macbook 上背光键盘的亮度?

背光键是 F5F6

编辑:

根据@Clark的建议,我尝试了以下操作,但它不起作用。

    NSAppleScript *run = [[NSAppleScript alloc] initWithSource:@"tell application \"System Events\" to key code 96"];
    [run executeAndReturnError:nil];

有什么建议吗?

Is there a way to use an Apple Script to control the brightness of the backlit keyboard on a Macbook?

The backlit keys are the F5 and F6.

Edit:

Based on the suggestion of @Clark I tried the follow, but it does not work.

    NSAppleScript *run = [[NSAppleScript alloc] initWithSource:@"tell application \"System Events\" to key code 96"];
    [run executeAndReturnError:nil];

Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

虐人心 2024-12-13 03:26:28

Amit Singh 有一章介绍如何从 C 语言做到这一点。

https://web.archive.org/web/20200103164052/https://osxbook.com/book/bonus/chapter10/light/

编译该页面上的示例代码很容易并从 Applescript 调用它。

要使 Applescript 键入功能键,您必须使用键代码。功能键前面的按键代码为:

  • F1 = 122
  • F2 = 120
  • F3 = 99
  • F4 = 118
  • F5 = 96
  • F6 = 97
  • F7 = 8
  • F8 = 100
  • F9 = 101
  • F10 = 109
  • F11 = 103

要键入一个,请执行以下操作:

告诉应用程序“系统事件”键代码 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:

  • F1 = 122
  • F2 = 120
  • F3 = 99
  • F4 = 118
  • F5 = 96
  • F6 = 97
  • F7 = 8
  • F8 = 100
  • F9 = 101
  • F10 = 109
  • F11 = 103

To type one do something like this:

tell application "System Events" to key code 96

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文