shusaku_tr
Explorer
shusaku_tr
Explorer
Activity
Apr 14, 2024
09:11 PM
2 Upvotes
スクリプトからはパネルの状態を更新できません。
... View more
Apr 14, 2024
04:02 PM
1 Upvote
please check the object hierarchy again.
mySubLayer has 3 objects and they are pageItems, not subLayers.
Currently, "object_1" is selected and the active layer is "mySubLayer". Therefore, to access the "name" property of "object_1" from this state, do the following
//activeLayer as "mySubLayer" not "myLayer"
alert(app.activeDocument.activeLayer.pageItems[0].name)
... View more
Feb 27, 2023
07:41 AM
1 Upvote
Thank you! It's worked perfectly..!
... View more
Jan 15, 2023
09:39 AM
Sorry, the code is hard to see, I will fix it. var folderPR = app.project.selection[0].file.fsName.replace(/\\/g,'/');
var indx = folderPR.lastIndexOf("/");
var folderPath = folderPR.slice(0,indx+1);
var folder = new Folder(folderPath);
var trgfiles = folder.getFiles();
... View more
Jan 14, 2023
09:19 AM
Hello, I would like to combine the contents of the shape layer into one with a script, is there a good way to do this? I thought of using executecommandID to copy-paste, but it is unstable so I am looking for another way. Thank you.
... View more
Jan 14, 2023
09:07 AM
ありがとうございます!! こちらで実行できました・・!!
... View more
Jan 09, 2023
02:28 AM
Thank you! It's worked!!
... View more
Oct 10, 2022
11:30 AM
1 Upvote
Does it help to call
dialog.layout.layout(true)
and/or
dialog.layout.resize()
after adding more text fields?
... View more