是否可以在中间脚本中打开Photoshop中的颜色选择器对话框,让用户选择颜色,然后继续使用脚本? Scriptlistener没有找到任何东西。
app.showColorPicker()
和
$.colorPicker(ColorPicker.ADOBE);
请勿在cs2中为我工作
答案 0 :(得分:1)
你可以这样做:
var color=app.showColorPicker()
var foregroundColor = app.foregroundColor;
alert ("foregroundcolor\n"+foregroundColor.rgb.red+"\n"+foregroundColor.rgb.green+"\n"+foregroundColor.rgb.blue);
你会看到这个:
得到这个:
不幸的是,您需要 Photoshop CS5或更好: - (
另类想法
我不确定何时将app.system()
引入Photoshop,但如果您已将其炮轰以执行您提供的命令作为参数。因此,您可以进入OSX的脚本编辑器并输入
choose color
并将其另存为名为OSXColorPicker
的应用程序。然后在Photoshop中,你可以做到
app.system("open OSXColorPicker");