Ps脚本互动教程 初识Ps脚本 文档操作 图像处理 使用图层 使用选区 通道基础 神奇滤镜 综合实例 JS脚本入门
首页 >
互动教程:手把手带您学习IT职场技能

设置前景色和背景色


X

本节将演示如何使用脚本,设置Photoshop的前景色和背景色。首先创建一个空白的脚本文档,并保存在硬盘上某个位置。

并输入脚本代码:

var answer = confirm("您需要随机设置前景色和背景色吗?");

[confirm]命令会弹出一个包含[是/否]的确认框,由用户决定是否执行某一个操作。
选择的结果[是/否]将保存在[answer]变量里。


if(answer) 
{
    app.foregroundColor.rgb.red   = Math.random() * 255;
    app.foregroundColor.rgb.green = Math.random() * 255;
    app.foregroundColor.rgb.blue  = Math.random() * 255;
    app.backgroundColor.rgb.red   = Math.random() * 255;
    app.backgroundColor.rgb.green = Math.random() * 255;
    app.backgroundColor.rgb.blue  = Math.random() * 255;
}

判断用户的选择,如果用户选择[是],则执行接下来的动作。
然后就可以设置Photoshop前景色和背景色了。
[Math.random]命令会生成一个0至1之间的随机值,随机值乘以255则生成0-255之间的随机值。

完整的脚本文件:

var answer = confirm("您需要随机设置前景色和背景色吗?");

if(answer) 
{
    app.foregroundColor.rgb.red   = Math.random() * 255;
    app.foregroundColor.rgb.green = Math.random() * 255;
    app.foregroundColor.rgb.blue  = Math.random() * 255;
    app.backgroundColor.rgb.red   = Math.random() * 255;
    app.backgroundColor.rgb.green = Math.random() * 255;
    app.backgroundColor.rgb.blue  = Math.random() * 255;
}

我们的脚本已经编写完成,现在把它保存下来。

然后切换到Photoshop,然后依次点击[文件] > [脚本] > [浏览],打开刚刚保存的脚本文件。Photoshop将直接调用并执行该脚本。

在弹出的[脚本警告]弹出框窗口,点击[是]按钮,开始设置前景色和背景色,请留意工具条下方前景色和背景色的变化。



互动教程网 提供的内容仅用于培训。我们不保证内容的正确性。 通过使用本站内容随之而来的风险与本站无关。 互动教程网简体中文版的所有内容仅供测试,对任何法律问题及风险不承担任何责任。 当使用本站时,代表您已接受了本站的使用条款和隐私条款。 版权所有,保留一切权利。
赞助商:TapInfinity   互动教程网