ExtendScript / ScriptUI で問題が発生してからしばらく時間が経ちましたが、ここで専門家に相談する必要がありました。それは私が学んでいることを意味すると思います!:~)
以下は、私が作業しようとしているコードのスニペットです。true
理論的には、(配列内のステートメントの数に応じて) 1、2、または 3 つのパレット ウィンドウpSpecial
を開くことができ、ユーザーがそれぞれのアイテムを選択Continue
して 4 番目のパレットのボタンをクリックするのを待ちます。この複雑さについては、あらかじめお詫び申し上げます。私はまだこれらすべてに比較的慣れていないので、コードを理解するのは少し難しいかもしれませんが、1 つまたは 2 つの単純なパレットを開くだけに要約できる可能性があります。
var aFoils = ["Choose one…", "-", "Shiny Gold", "Matte Gold", "Shiny Silver", "Matte Silver", "Copper", "Green", "Dark Purple", "Blue", "Teal", "Red", "Burgundy"];
var swatchObjects = ["123u", "871c", "Black"];
var pSpecial = [false, true, false];
// The xDelta variable specifies how far to move the palettes away from each other.
// xMove will be the X LOCATION for the new window.
var xDelta = 300;
var xMove;
var hsChecks = [], hsDropdowns = [], dbRadios = [], ebRadios = [];
var hotstampColors = [];
var debossColor, embossColor;
// If one of the specials is checked (hotstamp/deboss/emboss), then let's handle it.
// Define the Hotstamp window.
var hotstampWin = new Window("palette");
hotstampWin.onShow = function ()
{
hotstampWin.location.x = xMove;
}
hotstampWin.add("statictext", undefined, "Please select Hotstamping foils:");
var hsGroups = hotstampWin.add("group");
var hsCheckGrp = hsGroups.add("group");
hsCheckGrp.orientation = "column";
hsCheckGrp.alignChildren = "left";
var hsDDGrp = hsGroups.add("group");
hsDDGrp.orientation = "column";
hsDDGrp.alignChildren = "left";
for (var h = 0; h < swatchObjects.length; h++)
{
hsChecks.push(hsCheckGrp.add("checkbox", undefined, swatchObjects[h]));
hsDropdowns.push(hsDDGrp.add("dropdownlist", undefined, aFoils));
}
// Define the Deboss window.
var debossWin = new Window("palette");
debossWin.onShow = function ()
{
debossWin.location.x = xMove;
}
debossWin.add("statictext", undefined, "Please check which color is Debossed:");
var dbGroup = debossWin.add("panel");
for (var d = 0; d < swatchObjects.length; d++)
{
dbRadios.push(dbGroup.add("radiobutton", undefined, swatchObjects[d]));
}
// Define the Emboss window.
var embossWin = new Window("palette");
embossWin.onShow = function ()
{
embossWin.location.x = xMove;
}
embossWin.add("statictext", undefined, "Please check which color is Embossed:");
var ebGroup = embossWin.add("panel");
for (var e = 0; e < swatchObjects.length; e++)
{
ebRadios.push(ebGroup.add("radiobutton", undefined, swatchObjects[e]));
}
// Define the window with the "Continue" button.
var continueWin = new Window("palette"/*, undefined, undefined, {borderless: true}*/);
continueWin.onShow = function ()
{
continueWin.location.y = ($.screens[0].bottom / 2) - (continueWin.size[1] / 2) + 75 + (25 * swatchObjects.length);
}
var bContinue = continueWin.add("button", undefined, "Continue", {name: "ok"});
bContinue.onClick = function ()
{
if (dbRadios.length > 0) {debossColor = selected_rbutton(dbGroup);}
if (ebRadios.length > 0) {embossColor = selected_rbutton(ebGroup);}
if (hsChecks.length > 0)
{
for (var j = 0; j < hsChecks.length; j++)
{
if (hsChecks[j].value)
{
hotstampColors.push([swatchObjects[j], hsDropdowns[j].selection.text]);
}
}
}
aSpecial[0].close();
this.parent.close();
}
function selected_rbutton (rbuttons)
{
for (var i = 0; i < rbuttons.children.length; i++)
{
if (rbuttons.children[i].value == true) {return rbuttons.children[i].text;}
}
}
var aSpecial = new Array;
if (pSpecial[0]) {aSpecial.push(hotstampWin);}
if (pSpecial[1]) {aSpecial.push(debossWin);}
if (pSpecial[2]) {aSpecial.push(embossWin);}
switch (aSpecial.length)
{
case 1:
aSpecial[0].show();
xMove = ($.screens[0].right / 2) - (aSpecial[0].size[0] / 2);
aSpecial[0].show();
if (continueWin.show() == 1)
{
aSpecial[0].close();
continueWin.close();
}
else
{
exit();
}
break;
case 2:
aSpecial[0].show();
xMove = ($.screens[0].right / 2) - (aSpecial[0].size[0] / 2) - xDelta;
aSpecial[0].show();
aSpecial[1].show();
xMove = ($.screens[0].right / 2) - (aSpecial[1].size[0] / 2) + xDelta;
aSpecial[1].show();
if (continueWin.show() == 1)
{
aSpecial[0].close();
aSpecial[1].close();
continueWin.close();
}
else
{
exit();
}
break;
case 3:
aSpecial[0].show();
xMove = ($.screens[0].right / 2) - (aSpecial[0].size[0] / 2) - (xDelta * 1.5);
aSpecial[0].show();
aSpecial[1].show();
xMove = ($.screens[0].right / 2) - (aSpecial[1].size[0] / 2);
aSpecial[1].show();
aSpecial[2].show();
xMove = ($.screens[0].right / 2) - (aSpecial[2].size[0] / 2) + (xDelta * 1.5);
aSpecial[2].show();
if (continueWin.show() == 1)
{
aSpecial[0].close();
aSpecial[1].close();
aSpecial[2].close();
continueWin.close();
}
else
{
exit();
}
break;
default:
break;
}
このコードで私が抱えている問題は、実行するとパレットが開いてすぐに閉じてしまうことです。ユーザーとのやり取りの機会はありません。なぜ彼らは閉じるのですか?
また、1 つ以上のウィンドウをそのdialog
タイプに変更しようとしましたが、そのウィンドウが引き継がれ、そのウィンドウが閉じられるまで、ユーザーは他のウィンドウと対話できなくなります。
true
すべてを 1 つのダイアログ ウィンドウに結合するなど、他のアイデアも受け入れますが、そのpSpecial
配列にある" " の数に応じて動的にサイズを変更したいと考えています。