本文介绍了如何使用苹果脚本来控制背光键盘?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有使用苹果脚本来控制背光键盘在MacBook?

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

背光键是 F5 F6

编辑:

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

有什么建议?

推荐答案

阿米特·辛格对如何从C做的一章。

Amit Singh has a chapter on how to do this from C.

这会很容易编译页面上的示例code和AppleScript的调用它。

It'd be easy to compile the sample code on that page and call it from Applescript.

为使AppleScript的类型,你必须使用关键code的功能键。关键codeS脱颖而出功能键是:

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 98
F8 100
F9 101
F10 109
F11 103

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

要打印一份做这样的事情:

To type one do something like this:

告诉应用程序系统事件关键code 96

tell application "System Events" to key code 96

这篇关于如何使用苹果脚本来控制背光键盘?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 15:43