4

我正在尝试创建一个 OSX 应用程序,它是屏幕键盘的复制品。是否可以在另一个活动应用程序的光标位置插入一些文本?提前致谢!

4

2 回答 2

9

有可能的。可访问性允许更改其他应用程序的内容,但您的应用程序不能被沙盒化,因此无法通过 AppStore 使用。

CFTypeRef focusedUI;
AXUIElementCopyAttributeValue(AXUIElementCreateSystemWide(), kAXFocusedUIElementAttribute, &focusedUI);

if (focusedUI) {
    CFTypeRef textValue, textRange;
    // get text content and range
    AXUIElementCopyAttributeValue(focusedUI, kAXValueAttribute, &textValue);
    AXUIElementCopyAttributeValue(focusedUI, kAXSelectedTextRangeAttribute, &textRange);

    NSRange range;
    AXValueGetValue(textRange, kAXValueCFRangeType, &range);
    // replace current range with new text
    NSString *newTextValue = [(__bridge NSString *)textValue stringByReplacingCharactersInRange:range withString:newText];
    AXUIElementSetAttributeValue(focusedUI, kAXValueAttribute, (__bridge CFStringRef)newTextValue);
    // set cursor to correct position
    range.length = 0;
    range.location += text.length;
    AXValueRef valueRef = AXValueCreate(kAXValueCFRangeType, (const void *)&range);
    AXUIElementSetAttributeValue(focusedUI, kAXSelectedTextRangeAttribute, valueRef);

    CFRelease(textValue);
    CFRelease(textRange);
    CFRelease(focusedUI);
}

此代码不检查错误并假设焦点元素是文本区域。

于 2014-02-26T13:10:59.560 回答
1

不确定这是否有帮助,但在 Applescript 中,您可以执行类似的操作

tell application "System Events"
    keystroke "Stuff here"
end tell

所以也许你可以尝试在可可中调用它 usingNSApplescript或 using NSTaskand run

osascript -e 'tell application "System Events" to keystroke "Stuff here"'
于 2013-04-29T08:00:14.787 回答