NSAppleScript 无法工作
有人可以告诉我为什么这不起作用吗?
NSAppleScript* playPause = [[NSAppleScript alloc] initWithSource:
@"\
tell application \"System Events\"\n\
tell application \"Final Cut Pro\" to activate\n\
keystroke \" \"\
end tell"];
我收到错误“预期 ':' ',' ';' “=”标记之前的“}”或“属性”。搞什么?
感谢您的帮助!
Can someone please tell me why this won't work?
NSAppleScript* playPause = [[NSAppleScript alloc] initWithSource:
@"\
tell application \"System Events\"\n\
tell application \"Final Cut Pro\" to activate\n\
keystroke \" \"\
end tell"];
I get the error "Expected ':' ',' ';' '}' or 'attribute' before '=' token". WTF?
Thanks for your help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 C、Objective-C 或 C++ 中,在字符串文字内的换行符之前放置反斜杠不起作用。
只需
使用字符串文字的自动连接即可。
Putting a backslash before the newline inside a string literal does not work in C, Objective-C, or C++.
Just use
using automatic concatenation of string literals.