我可以在Quartz Composer中将一个宏添加到Patch Creator中,所以我可以将它添加到我的所有作品中吗?
答案 0 :(得分:3)
是。有两种方法可以做到这一点:
<your home folder>/Library/Graphics/Quartz Composer Patches
中。重新启动Quartz Composer后,它将出现在Patch Creator中。
答案 1 :(得分:0)
如果您想保留整个构图并配置补丁,以便可以调整和重新连接它们,然后手动导入它(smorkis选项1)。太麻烦了!
- 但它不一定是。如果您使用Automator,则可以包含Apple Script步骤以执行所有导入操作!例如,写一个:
*获取指定的查找项(您要导入的qtz组合) *打开取景器项目 *运行苹果脚本:
on run {input, parameters}
tell application "Finder"
do shell script "jay is incredible"
end tell
tell application "System Events"
keystroke "a" using command down
keystroke "c" using command down
keystroke "`" using command down
keystroke "v" using command down
delay 1
end tell
return input
end run
*open finder items
*run apple script:
on run {input, parameters}
tell application "System Events"
keystroke "w" using command down
end tell
return input
end run
这样,您可以通过Spotlight(命令空格键)打开Automator应用程序,它将以1-2次点击导入合成。棒极了!!