我想通过相对于当前位置的宽度(var x2)移动整个文档所做的选择。似乎在早期版本中有一个翻译功能完全符合我的要求但是这个功能现在提供了“可能不支持此版本的Photoshop”错误。我正在使用 Photoshop Extended CS6 。 这是我的选择:
var x2 = 720;
var y2 = 350;
docRef.selection.select(Array (Array(0, 0), Array(x2, 0), Array(x2, y2), Array(0, y2)));
我试图为此制定一个等式,但我得到的只是垃圾选择,甚至不再是矩形。
答案 0 :(得分:1)
没关系,这很简单,我想我脑子里有个结。
这非常有效:
var offset = 720;
var x2 = 720+offset;
var y2 = 350;
docRef.selection.select(Array (Array(0+offset, 0), Array(x2,0), Array(x2, y2), Array(0+offset, y2)));
答案 1 :(得分:1)
我认为翻译(在早期版本中)不起作用,或者现在已经过时了,因为它是基于点的,而不是基于像素的.1点= 4.86127像素
我倾向于使用此功能来获得矩形或椭圆形选择。我发现它比定义四个限制(顶部,左侧,右侧,底部)而不是四组x&更容易。你每次都会唱歌。
selectThis(10, 10, 90, 90, "rect")
// function selectThis (top, left, right, bottom, ellipse or rect [default], antialias [default] )
// ----------------------------------------------------------------------------
function selectThis(top, left, right, bottom, shape, aa)
{
srcDoc.selection.deselect()
// =======================================================
var id1 = charIDToTypeID( "setd" );
var desc1 = new ActionDescriptor();
var id2 = charIDToTypeID( "null" );
var ref1 = new ActionReference();
var id3 = charIDToTypeID( "Chnl" );
var id4 = charIDToTypeID( "fsel" );
ref1.putProperty( id3, id4 );
desc1.putReference( id2, ref1 );
var id5 = charIDToTypeID( "T " );
var desc2 = new ActionDescriptor();
var id6 = charIDToTypeID( "Top " );
var id7 = charIDToTypeID( "#Pxl" );
desc2.putUnitDouble( id6, id7, top );
var id8 = charIDToTypeID( "Left" );
var id9 = charIDToTypeID( "#Pxl" );
desc2.putUnitDouble( id8, id9, left );
var id10 = charIDToTypeID( "Btom" );
var id11 = charIDToTypeID( "#Pxl" );
desc2.putUnitDouble( id10, id11, bottom );
var id12 = charIDToTypeID( "Rght" );
var id13 = charIDToTypeID( "#Pxl" );
desc2.putUnitDouble( id12, id13, right );
if (shape == "Elps" || shape == "oval")
{
var id14 = charIDToTypeID( "Elps" );
desc1.putObject( id5, id14, desc2 );
var id15 = charIDToTypeID( "AntA" );
if (aa == true || aa == undefined)
{
desc1.putBoolean( id15, true );
}
else
{
desc1.putBoolean( id15, false );
}
}
else
{
var id16 = charIDToTypeID( "Rctn" );
desc1.putObject( id5, id16, desc2 );
}
executeAction( id1, desc1, DialogModes.NO );
}
希望这有用。