gpt4 book ai didi

keyboard - 如何使用 Applescript 控制背光键盘?

转载 作者:行者123 更新时间:2023-12-03 15:02:47 25 4
gpt4 key购买 nike

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

背光键是 F5F6 .

编辑:

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

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

有什么建议?

最佳答案

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

    关于keyboard - 如何使用 Applescript 控制背光键盘?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7542900/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com